From 9ce8ec2d92e2371524419b0294dbe1aa890b4242 Mon Sep 17 00:00:00 2001 From: Alex-D Date: Thu, 26 Nov 2020 02:24:21 +0100 Subject: [PATCH] chore: rename npm run start to npm run dev --- README.md | 9 ++++----- package.json | 2 +- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 4596bbc7d..01068e98e 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 7156fcf51..a91fc4638 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"