Skip to content

Commit 5f8ce53

Browse files
committed
Finished npm publishing toolchain. @0.1.0 is on npm! https://www.npmjs.com/package/redux-components
1 parent de71438 commit 5f8ce53

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

.npmignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.git*
2+
docs/
3+
test/
4+
*.swp
5+
.DS_Store
6+
src/
7+
scripts/
8+
book.json
9+
coffeelint.json
10+
.eslintrc
11+
.babelrc

package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
{
22
"name": "redux-components",
3-
"version": "0.0.2",
3+
"version": "0.1.0",
44
"description": "A component model for Redux state trees based on the React.js component model.",
55
"main": "./index.js",
6-
"scripts": {},
6+
"scripts": {
7+
"clean": "rm -rf lib",
8+
"build": "mkdir -p lib && coffee -o lib src/*.coffee",
9+
"prepublish": "npm run clean && npm run build"
10+
},
711
"repository": {
812
"type": "git",
913
"url": "https://github.com/wcjohnson/redux-components.git"

0 commit comments

Comments
 (0)