Skip to content

Commit 1168f8e

Browse files
committed
(docs) Use gulp commands as npm scripts
1 parent 6e8fc24 commit 1168f8e

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ Thank you to everyone who has contributed to baguetteBox.js!
2828

2929
Build the script
3030
```sh
31-
gulp build
31+
npm start build
3232
git add --update
3333
git commit -m "Build update"
3434
```
3535

3636
Bump the version
3737
```sh
38-
gulp release # or gulp patch
38+
npm start release # or npm start patch
3939
git add --update
4040
git commit -m "v1.8.0"
4141
```

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@
2121
"scripts": {
2222
"start": "gulp",
2323
"lint": "gulp lint",
24-
"test": "gulp test"
24+
"test": "gulp test",
25+
"build": "gulp build",
26+
"release": "gulp release",
27+
"patch": "gulp patch"
2528
},
2629
"dependencies": {},
2730
"resolutions": {

0 commit comments

Comments
 (0)