Skip to content
This repository was archived by the owner on Jun 29, 2025. It is now read-only.

Commit dd04569

Browse files
authored
Bump deps, changelog, and node 13 (#52)
1 parent dad1a3d commit dd04569

File tree

4 files changed

+111
-81
lines changed

4 files changed

+111
-81
lines changed

.circleci/config.yml

Lines changed: 25 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,61 +3,62 @@ jobs:
33
build:
44
docker:
55
- image: circleci/node:8
6-
working_directory: ~/repo
76
steps:
87
- checkout
98
- run: npm install
109
- run: npm run lint
1110
- persist_to_workspace:
12-
root: ~/repo
13-
paths: .
11+
root: ~/
12+
paths:
13+
- project
1414
test-node8:
1515
docker:
1616
- image: circleci/node:8
17-
working_directory: ~/repo
1817
steps:
1918
- attach_workspace:
20-
at: ~/repo
19+
at: ~/
2120
- run: npm test
2221
test-node9:
2322
docker:
2423
- image: circleci/node:9
25-
working_directory: ~/repo
2624
steps:
2725
- attach_workspace:
28-
at: ~/repo
26+
at: ~/
2927
- run: npm test
3028
test-node10:
3129
docker:
3230
- image: circleci/node:10
33-
working_directory: ~/repo
3431
steps:
3532
- attach_workspace:
36-
at: ~/repo
33+
at: ~/
3734
- run: npm test
3835
test-node11:
3936
docker:
4037
- image: circleci/node:11
41-
working_directory: ~/repo
4238
steps:
4339
- attach_workspace:
44-
at: ~/repo
40+
at: ~/
4541
- run: npm test
4642
test-node12:
4743
docker:
4844
- image: circleci/node:12
49-
working_directory: ~/repo
5045
steps:
5146
- attach_workspace:
52-
at: ~/repo
47+
at: ~/
48+
- run: npm test
49+
test-node13:
50+
docker:
51+
- image: circleci/node:13
52+
steps:
53+
- attach_workspace:
54+
at: ~/
5355
- run: npm test
5456
publish-beta:
5557
docker:
5658
- image: circleci/node:10
57-
working_directory: ~/repo
5859
steps:
5960
- attach_workspace:
60-
at: ~/repo
61+
at: ~/
6162
- run:
6263
name: Authenticate with registry
6364
command: echo "//registry.npmjs.org/:_authToken=$npm_TOKEN" >> ~/.npmrc
@@ -67,10 +68,9 @@ jobs:
6768
publish-stable:
6869
docker:
6970
- image: circleci/node:10
70-
working_directory: ~/repo
7171
steps:
7272
- attach_workspace:
73-
at: ~/repo
73+
at: ~/
7474
- run:
7575
name: Authenticate with registry
7676
command: echo "//registry.npmjs.org/:_authToken=$npm_TOKEN" >> ~/.npmrc
@@ -116,13 +116,20 @@ workflows:
116116
filters:
117117
tags:
118118
only: /.*/
119+
- test-node13:
120+
requires:
121+
- build
122+
filters:
123+
tags:
124+
only: /.*/
119125
- publish-beta:
120126
requires:
121127
- test-node8
122128
- test-node9
123129
- test-node10
124130
- test-node11
125131
- test-node12
132+
- test-node13
126133
filters:
127134
tags:
128135
only: /^v\d*\.\d*\.\d*-beta\.\d*$/
@@ -136,6 +143,7 @@ workflows:
136143
- test-node10
137144
- test-node11
138145
- test-node12
146+
- test-node13
139147
filters:
140148
tags:
141149
only: /^v\d*\.\d*\.\d*$/

CHANGELOG.md

Lines changed: 1 addition & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -2,37 +2,4 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5-
## [Unreleased]
6-
### Added
7-
8-
### Changed
9-
10-
### Fixed
11-
12-
### Removed
13-
14-
15-
## [2.0.1] - 2019-09-16
16-
### Fixed
17-
* #19 - Resolved a compatibility issue between prettier and eslint-plugin-vue. Thanks, @conrad2134 :tada:
18-
19-
## [2.0.0] - 2019-09-05
20-
### Added
21-
* Add eslint-plugin-vue-a11y
22-
23-
## [1.1.1] - 2019-08-11
24-
### Fixed
25-
* Compatibility issue between Prettier and Vue Plugin.
26-
27-
## [1.1.0] - 2019-08-10
28-
### Changed
29-
* Support for ESLint 6.
30-
31-
## [1.0.0] - 2019-08-05
32-
33-
* Added [`vue/require-direct-export`](https://eslint.vuejs.org/rules/require-direct-export.html)
34-
* Added [`vue/no-empty-pattern`](https://eslint.vuejs.org/rules/no-empty-pattern.html)
35-
* Added [`vue/no-deprecated-scope-attribute`](https://eslint.vuejs.org/rules/no-deprecated-scope-attribute.html)
36-
* Added [`vue/no-boolean-default`](https://eslint.vuejs.org/rules/no-boolean-default.html)
37-
* Added [`vue/match-component-file-name`](https://eslint.vuejs.org/rules/match-component-file-name.html)
38-
* Added [`vue/component-name-in-template-casing`](https://eslint.vuejs.org/rules/component-name-in-template-casing.html)
5+
Please see [GitHub releases](https://github.com/tclindner/eslint-config-vue-tc/releases) for details.

package-lock.json

Lines changed: 75 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-vue-tc",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "ESLint shareable config for Vue projects",
55
"keywords": [
66
"eslintconfig",
@@ -36,23 +36,24 @@
3636
},
3737
"devDependencies": {
3838
"babel-eslint": "^10.0.3",
39-
"eslint": "^6.6.0",
40-
"eslint-config-tc": "^9.0.0",
41-
"eslint-formatter-pretty": "^3.0.0",
39+
"eslint": "^6.7.2",
40+
"eslint-config-tc": "^10.0.1",
41+
"eslint-formatter-pretty": "^3.0.1",
42+
"eslint-plugin-eslint-comments": "^3.1.2",
4243
"eslint-plugin-import": "^2.18.2",
43-
"eslint-plugin-jest": "^23.0.2",
44+
"eslint-plugin-jest": "^23.1.1",
4445
"eslint-plugin-prettier": "^3.1.1",
45-
"eslint-plugin-vue": "^5.2.3",
46+
"eslint-plugin-vue": "^6.0.1",
4647
"eslint-plugin-vue-a11y": "^0.0.31",
4748
"is-plain-obj": "^2.0.0",
4849
"jest": "^24.9.0",
49-
"npm-package-json-lint": "^4.0.3",
50+
"npm-package-json-lint": "^4.4.0",
5051
"npm-package-json-lint-config-tc": "^3.0.0",
51-
"prettier": "^1.18.2"
52+
"prettier": "^1.19.1"
5253
},
5354
"peerDependencies": {
5455
"eslint": "^6.0.0",
55-
"eslint-plugin-vue": "^5.0.0",
56+
"eslint-plugin-vue": "^5.0.0 || ^6.0.0",
5657
"eslint-plugin-vue-a11y": "^0.0.31"
5758
},
5859
"engines": {

0 commit comments

Comments
 (0)