We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e8fc24 commit 1168f8eCopy full SHA for 1168f8e
2 files changed
CONTRIBUTING.md
@@ -28,14 +28,14 @@ Thank you to everyone who has contributed to baguetteBox.js!
28
29
Build the script
30
```sh
31
-gulp build
+npm start build
32
git add --update
33
git commit -m "Build update"
34
```
35
36
Bump the version
37
38
-gulp release # or gulp patch
+npm start release # or npm start patch
39
40
git commit -m "v1.8.0"
41
package.json
@@ -21,7 +21,10 @@
21
"scripts": {
22
"start": "gulp",
23
"lint": "gulp lint",
24
- "test": "gulp test"
+ "test": "gulp test",
25
+ "build": "gulp build",
26
+ "release": "gulp release",
27
+ "patch": "gulp patch"
},
"dependencies": {},
"resolutions": {
0 commit comments