Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
Adds the gulp-cli to the package
Browse files Browse the repository at this point in the history
This will also avoid problem of switching project with gulp version 3.

Also now you need to ```use npm start ``` instead of ```gulp```
  • Loading branch information
lejoe committed Nov 23, 2015
1 parent 9b0e25b commit b6844ee
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"version": "0.0.0",
"main": "dist/index.html",
"scripts": {
"start": "gulp",
"build": "gulp build",
"test": "gulp test",
"serve": "gulp serve",
"deploy": "gulp deploy"
"start": "./node_modules/.bin/gulp",
"build": "./node_modules/.bin/gulp build",
"test": "./node_modules/.bin/gulp test",
"serve": "./node_modules/.bin/gulp serve",
"deploy": "./node_modules/.bin/gulp deploy"
},
"dependencies": {
"sensible": "0.5.4"
Expand All @@ -21,6 +21,7 @@
"gulp-accessibility": "^1.2.1",
"gulp-autoprefixer": "^2.2.0",
"gulp-changed": "^1.2.1",
"gulp-cli": "github:gulpjs/gulp-cli#4.0",
"gulp-concat": "^2.5.2",
"gulp-css-globbing": "^0.1.7",
"gulp-data": "^1.2.0",
Expand Down

0 comments on commit b6844ee

Please sign in to comment.