diff --git a/README.md b/README.md index 4596bbc7..01068e98 100644 --- a/README.md +++ b/README.md @@ -76,11 +76,10 @@ Thanks to `node` and `gulp`, you can improve core script, style or icons easily. First, fork and clone the repository ```bash -cd Trumbowyg # to go into the project's root directory -npm install # to install development dependencies -npm install -g bower gulp # to install bower and gulp command if you don't have them already -bower install # to install Trumbowyg dependencies (ie: jQuery) -gulp build # to build the project +cd Trumbowyg # go into the project's root directory +npm install # install development dependencies +npm run dev # watch mode +npm run build # to build the project ``` `gulp` command launch default Gulp task watcher and rebuild on the fly. diff --git a/package.json b/package.json index 7156fcf5..a91fc463 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "jquery": ">=1.8" }, "scripts": { - "start": "gulp", + "dev": "gulp", "build": "gulp build", "clean": "gulp clean", "test": "gulp test"