Skip to content

Commit 064c030

Browse files
committed
feat: release initial version
0 parents  commit 064c030

File tree

44 files changed

+991
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+991
-0
lines changed
52.7 KB
Loading
96 KB
Binary file not shown.

.babelrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"plugins": [
3+
"transform-es2015-modules-commonjs",
4+
"transform-es2015-parameters",
5+
"transform-es2015-destructuring",
6+
"transform-flow-strip-types"
7+
]
8+
}

.editorconfig

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
insert_final_newline = true
6+
indent_style = space
7+
indent_size = 2

.eslintrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": [
3+
"canonical"
4+
],
5+
"root": true
6+
}

.flowconfig

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[ignore]
2+
<PROJECT_ROOT>/node_modules/config-chain/test/broken.json
3+
<PROJECT_ROOT>/node_modules/conventional-changelog-core/test/fixtures/_malformation.json
4+
<PROJECT_ROOT>/node_modules/npmconf/test/fixtures/package.json

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
coverage
2+
dist
3+
node_modules
4+
*.log
5+
.*
6+
!.babelrc
7+
!.editorconfig
8+
!.eslintrc
9+
!.flowconfig
10+
!.gitignore
11+
!.npmignore
12+
!.README
13+
!.travis.yml

.npmignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
src
2+
test
3+
coverage
4+
.*
5+
*.log

.travis.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
language: node_js
2+
node_js:
3+
- 7
4+
- 6
5+
- 5
6+
after_success:
7+
- semantic-release pre && npm publish && semantic-release post
8+
notifications:
9+
email: false
10+
sudo: false

ISSUE_TEMPLATE.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<!--
2+
Have a technical question? Raise a question on http://stackoverflow.com/ using "babel-plugin-react-css-modules" tag.
3+
4+
Use https://github.com/gajus/babel-plugin-react-css-modules/issues to report issues and suggest new features.
5+
-->

0 commit comments

Comments
 (0)