Skip to content

Commit

Permalink
chore: prepublish scripts and fixed entry points
Browse files Browse the repository at this point in the history
  • Loading branch information
Guria committed Oct 11, 2016
1 parent ba16ca1 commit 08c992f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
7 changes: 4 additions & 3 deletions packages/cerebral-router/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "cerebral-router",
"version": "1.0.0-alpha.1",
"version": "1.0.0-alpha.2",
"description": "An opinionated URL change handler for Cerebral",
"main": "index.js",
"main": "lib/index.js",
"author": "Christian Alfoni <christianalfoni@gmail.com>",
"contributors": [
"Aleksey Guryanov <gurianov@gmail.com>"
Expand All @@ -25,7 +25,8 @@
"scripts": {
"test": "../../node_modules/.bin/mocha --compilers js:../../node_modules/babel-register 'tests/**/*.js'",
"build": "../../node_modules/.bin/babel src/ --out-dir=lib/ -s",
"coverage": "../../node_modules/.bin/nyc --reporter=lcov --reporter=json npm run test"
"coverage": "../../node_modules/.bin/nyc --reporter=lcov --reporter=json npm run test",
"prepublish": "npm run build"
},
"nyc": {
"exclude": [
Expand Down
5 changes: 3 additions & 2 deletions packages/cerebral/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cerebral",
"version": "2.0.0-alpha.3",
"version": "2.0.0-alpha.4",
"description": "A state controller with its own debugger",
"main": "index.js",
"author": "Christian Alfoni <christianalfoni@gmail.com>",
Expand All @@ -19,7 +19,8 @@
"scripts": {
"test": "../../node_modules/.bin/mocha --compilers js:../../node_modules/babel-register 'tests/**/*.js'",
"build": "../../node_modules/.bin/babel src/ --out-dir=lib/ -s",
"coverage": "../../node_modules/.bin/nyc --reporter=lcov --reporter=json npm run test"
"coverage": "../../node_modules/.bin/nyc --reporter=lcov --reporter=json npm run test",
"prepublish": "npm run build"
},
"nyc": {
"exclude": [
Expand Down
7 changes: 4 additions & 3 deletions packages/function-tree/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
{
"name": "function-tree",
"version": "0.5.0-alpha.1",
"version": "0.5.0-alpha.2",
"description": "When a function is not enough",
"main": "src/index.js",
"main": "lib/index.js",
"scripts": {
"demo:redux": "node demos/server --demo redux",
"demo:mobx": "node demos/server --demo mobx",
"demo:node": "node demos/node/main.js",
"test": "nodeunit tests",
"build": "../../node_modules/.bin/babel src/ --out-dir=lib/ -s",
"coverage": "../../node_modules/.bin/nyc --reporter=lcov --reporter=json npm run test"
"coverage": "../../node_modules/.bin/nyc --reporter=lcov --reporter=json npm run test",
"prepublish": "npm run build"
},
"devDependencies": {
"axios": "^0.14.0",
Expand Down

0 comments on commit 08c992f

Please sign in to comment.