Skip to content

Commit 5062dc2

Browse files
committed
Initial commit
0 parents  commit 5062dc2

File tree

4 files changed

+40
-0
lines changed

4 files changed

+40
-0
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# CSS Modules Browserify Demo
2+
3+
Coming soon.
4+
5+
## License
6+
7+
MIT

package.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "browserify-demo",
3+
"version": "1.0.0",
4+
"description": "A working demo of CSS Modules using browserify",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "https://github.com/css-modules/browserify-demo.git"
12+
},
13+
"author": "Josh Johnston",
14+
"license": "MIT",
15+
"bugs": {
16+
"url": "https://github.com/css-modules/browserify-demo/issues"
17+
},
18+
"homepage": "https://github.com/css-modules/browserify-demo"
19+
}

0 commit comments

Comments
 (0)