Skip to content

Commit e02d9c3

Browse files
authored
v4 (#76)
1 parent 91efe13 commit e02d9c3

File tree

6 files changed

+165
-205
lines changed

6 files changed

+165
-205
lines changed

.circleci/config.yml

Lines changed: 3 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
jobs:
33
build:
44
docker:
5-
- image: circleci/node:8
5+
- image: circleci/node:12
66
steps:
77
- checkout
88
- run: npm ci
@@ -11,20 +11,6 @@ jobs:
1111
root: ~/
1212
paths:
1313
- project
14-
test-node8:
15-
docker:
16-
- image: circleci/node:8
17-
steps:
18-
- attach_workspace:
19-
at: ~/
20-
- run: npm run test:ci
21-
test-node9:
22-
docker:
23-
- image: circleci/node:9
24-
steps:
25-
- attach_workspace:
26-
at: ~/
27-
- run: npm run test:ci
2814
test-node10:
2915
docker:
3016
- image: circleci/node:10
@@ -55,7 +41,7 @@ jobs:
5541
- run: npm run test:ci
5642
publish-beta:
5743
docker:
58-
- image: circleci/node:10
44+
- image: circleci/node:12
5945
steps:
6046
- attach_workspace:
6147
at: ~/
@@ -67,7 +53,7 @@ jobs:
6753
command: npm publish --tag beta
6854
publish-stable:
6955
docker:
70-
- image: circleci/node:10
56+
- image: circleci/node:12
7157
steps:
7258
- attach_workspace:
7359
at: ~/
@@ -86,18 +72,6 @@ workflows:
8672
filters:
8773
tags:
8874
only: /.*/
89-
- test-node8:
90-
requires:
91-
- build
92-
filters:
93-
tags:
94-
only: /.*/
95-
- test-node9:
96-
requires:
97-
- build
98-
filters:
99-
tags:
100-
only: /.*/
10175
- test-node10:
10276
requires:
10377
- build
@@ -124,8 +98,6 @@ workflows:
12498
only: /.*/
12599
- publish-beta:
126100
requires:
127-
- test-node8
128-
- test-node9
129101
- test-node10
130102
- test-node11
131103
- test-node12
@@ -138,8 +110,6 @@ workflows:
138110
- hold:
139111
type: approval
140112
requires:
141-
- test-node8
142-
- test-node9
143113
- test-node10
144114
- test-node11
145115
- test-node12

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
### Node
66

7-
* [Node.js](https://nodejs.org/) - v8.0.0+
7+
* [Node.js](https://nodejs.org/) - v10.0.0+
88
* [npm](https://www.npmjs.com/) - v6.0.0+
99

1010
## Install project dependencies

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ First thing first, let's make sure you have the necessary pre-requisites.
2222

2323
#### Node
2424

25-
* [Node.js](https://nodejs.org/) - v8.0.0+
25+
* [Node.js](https://nodejs.org/) - v10.0.0+
2626
* [npm](http://npmjs.com) - v6.0.0+
2727

2828
### Command

index.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ const config = {
3434
'error',
3535
[
3636
{
37-
node: '>=8.0.0',
38-
npm: '>=6.0.0'
39-
}
40-
]
37+
node: '>=10.0.0',
38+
npm: '>=6.0.0',
39+
},
40+
],
4141
],
4242
'valid-values-private': ['error', [false]],
4343
'no-repeated-dependencies': 'error',
@@ -46,8 +46,8 @@ const config = {
4646
'prefer-no-version-zero-devDependencies': 'warning',
4747
'prefer-caret-version-devDependencies': 'error',
4848
'name-format': 'error',
49-
'version-format': 'error'
50-
}
49+
'version-format': 'error',
50+
},
5151
};
5252

5353
module.exports = config;

0 commit comments

Comments
 (0)