This repository was archived by the owner on Mar 10, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Setup
4
4
5
- You should have [ node.js] , [ npm ] and [ gulp ] installed.
5
+ You should have [ node.js] and [ npm ] installed.
6
6
7
7
## Linting
8
8
9
9
Linting is done using [ eslint] and the rules are based on [ standard] .
10
10
11
11
``` bash
12
- $ gulp lint
12
+ $ npm run lint
13
13
```
14
14
15
15
## Tests
16
16
17
17
Tests in node
18
18
19
19
``` bash
20
- $ gulp test:node
20
+ $ npm run test:node
21
21
```
22
22
23
23
Tests in the browser
24
24
25
25
``` bash
26
- $ gulp test:browser
26
+ $ npm run test:browser
27
27
```
28
28
29
29
## Building browser version
30
30
31
31
``` bash
32
- $ gulp build
32
+ $ npm run build
33
33
```
34
34
35
35
## Releases
@@ -45,15 +45,14 @@ The `release` task will
45
45
46
46
``` bash
47
47
# Major release
48
- $ gulp release - -major
48
+ $ npm run release -major
49
49
# Minor relase
50
- $ gulp release - -minor
50
+ $ npm run release -minor
51
51
# Patch release
52
- $ gulp release
52
+ $ npm run release
53
53
```
54
54
55
55
[ node.js ] : https://nodejs.org/
56
56
[ npm ] : http://npmjs.org/
57
- [ gulp ] : http://gulpjs.com/
58
57
[ eslint ] : http://eslint.org/
59
58
[ standard ] : https://github.com/feross/standard
You can’t perform that action at this time.
0 commit comments