Skip to content

Commit 941c680

Browse files
authored
v3.0.0 (#71)
* v3.0.0 Require Node 10. Require npm-package-json-lint ^5.0.0 * Update config.yml
1 parent dd6e261 commit 941c680

File tree

6 files changed

+161
-201
lines changed

6 files changed

+161
-201
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ const defaultConfig = {
2626
'private-type': 'error',
2727
'repository-type': 'error',
2828
'scripts-type': 'error',
29-
'version-type': 'error'
30-
}
29+
'version-type': 'error',
30+
},
3131
};
3232

3333
module.exports = defaultConfig;

0 commit comments

Comments
 (0)