Skip to content

Commit

Permalink
chore: rename npm run start to npm run dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-D committed Nov 26, 2020
1 parent 0cff83e commit 9ce8ec2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions README.md
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -44,7 +44,7 @@
"jquery": ">=1.8"
},
"scripts": {
"start": "gulp",
"dev": "gulp",
"build": "gulp build",
"clean": "gulp clean",
"test": "gulp test"
Expand Down

0 comments on commit 9ce8ec2

Please sign in to comment.