Skip to content

Commit

Permalink
fix: yarn's bug, node_modules/.bin is empty
Browse files Browse the repository at this point in the history
  • Loading branch information
dexteryy committed Oct 18, 2016
1 parent 3093cb5 commit 4cba98d
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,22 @@
"license": "MIT",
"main": "index.js",
"scripts": {
"lint": "gulp --gulpfile node_modules/webcube/configs/gulpfile.babel.js check:all",
"test": "gulp --gulpfile node_modules/webcube/configs/gulpfile.babel.js test:all",
"test:quick": "gulp --gulpfile node_modules/webcube/configs/gulpfile.babel.js test:functional",
"test:unit": "gulp --gulpfile node_modules/webcube/configs/gulpfile.babel.js test:unit",
"test:cloud": "DEPLOY_MODE=staticweb NODE_ENV=production gulp --gulpfile node_modules/webcube/configs/gulpfile.babel.js test:functional",
"build": "npm run start:staticserver && gulp --gulpfile node_modules/webcube/configs/gulpfile.babel.js build",
"build:quick": "npm run start:staticserver && gulp --gulpfile node_modules/webcube/configs/gulpfile.babel.js build:html",
"new": "plop --plopfile=node_modules/webcube/configs/plopfile.babel.js",
"lint": "./node_modules/gulp/bin/gulp.js --gulpfile node_modules/webcube/configs/gulpfile.babel.js check:all",
"test": "./node_modules/gulp/bin/gulp.js --gulpfile node_modules/webcube/configs/gulpfile.babel.js test:all",
"test:quick": "./node_modules/gulp/bin/gulp.js --gulpfile node_modules/webcube/configs/gulpfile.babel.js test:functional",
"test:unit": "./node_modules/gulp/bin/gulp.js --gulpfile node_modules/webcube/configs/gulpfile.babel.js test:unit",
"test:cloud": "DEPLOY_MODE=staticweb NODE_ENV=production ./node_modules/gulp/bin/gulp.js --gulpfile node_modules/webcube/configs/gulpfile.babel.js test:functional",
"build": "npm run start:staticserver && ./node_modules/gulp/bin/gulp.js --gulpfile node_modules/webcube/configs/gulpfile.babel.js build",
"build:quick": "npm run start:staticserver && ./node_modules/gulp/bin/gulp.js --gulpfile node_modules/webcube/configs/gulpfile.babel.js build:html",
"new": "./node_modules/plop/plop.js --plopfile=node_modules/webcube/configs/plopfile.babel.js",
"dev": "npm run stop:staticserver && node node_modules/webcube/configs/devServer.js",
"dev:dashboard": "npm run stop:staticserver && webpack-dashboard -- node node_modules/webcube/configs/devServer.js",
"start:staticserver": "nohup gulp --gulpfile node_modules/webcube/configs/gulpfile.babel.js start:staticserver > ./webserver.log 2>&1 &",
"stop:staticserver": "gulp --gulpfile node_modules/webcube/configs/gulpfile.babel.js stop:staticserver",
"deploy:staticweb": "DEPLOY_MODE=staticweb NODE_ENV=production gulp --gulpfile node_modules/webcube/configs/gulpfile.babel.js deploy:staticweb",
"deploy:staticweb:html": "DEPLOY_MODE=staticweb NODE_ENV=production gulp --gulpfile node_modules/webcube/configs/gulpfile.babel.js deploy:html",
"deploy:staticweb:assets": "DEPLOY_MODE=staticweb NODE_ENV=production gulp --gulpfile node_modules/webcube/configs/gulpfile.babel.js deploy:static",
"redeploy:staticweb": "DEPLOY_MODE=staticweb NODE_ENV=production gulp --gulpfile node_modules/webcube/configs/gulpfile.babel.js redeploy:staticweb"
"dev:dashboard": "npm run stop:staticserver && ./node_modules/webpack-dashboard/bin/webpack-dashboard.js -- node node_modules/webcube/configs/devServer.js",
"start:staticserver": "nohup ./node_modules/gulp/bin/gulp.js --gulpfile node_modules/webcube/configs/gulpfile.babel.js start:staticserver > ./webserver.log 2>&1 &",
"stop:staticserver": "./node_modules/gulp/bin/gulp.js --gulpfile node_modules/webcube/configs/gulpfile.babel.js stop:staticserver",
"deploy:staticweb": "DEPLOY_MODE=staticweb NODE_ENV=production ./node_modules/gulp/bin/gulp.js --gulpfile node_modules/webcube/configs/gulpfile.babel.js deploy:staticweb",
"deploy:staticweb:html": "DEPLOY_MODE=staticweb NODE_ENV=production ./node_modules/gulp/bin/gulp.js --gulpfile node_modules/webcube/configs/gulpfile.babel.js deploy:html",
"deploy:staticweb:assets": "DEPLOY_MODE=staticweb NODE_ENV=production ./node_modules/gulp/bin/gulp.js --gulpfile node_modules/webcube/configs/gulpfile.babel.js deploy:static",
"redeploy:staticweb": "DEPLOY_MODE=staticweb NODE_ENV=production ./node_modules/gulp/bin/gulp.js --gulpfile node_modules/webcube/configs/gulpfile.babel.js redeploy:staticweb"
},
"config": {
"ghooks": {
Expand Down

0 comments on commit 4cba98d

Please sign in to comment.