Skip to content

Commit da7ba64

Browse files
authored
Merge pull request #954 from spotify/peer-deps
Fix peer dep issue with eslint + update deps
2 parents 3420728 + 7e0a5ce commit da7ba64

File tree

28 files changed

+266
-117
lines changed

28 files changed

+266
-117
lines changed

.github/workflows/publish-develop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
2121
- uses: actions/setup-node@v2
2222
with:
23-
node-version: 16.9
23+
node-version: 16
2424
- name: yarn install
2525
run: yarn install --frozen-lockfile
2626
- name: yarn build

.github/workflows/publish-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
2121
- uses: actions/setup-node@v2
2222
with:
23-
node-version: 16.9
23+
node-version: 16
2424
- name: yarn install
2525
run: yarn install --frozen-lockfile
2626
- name: yarn build

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
2121
- uses: actions/setup-node@v2
2222
with:
23-
node-version: 16.9
23+
node-version: 16
2424
- name: yarn install
2525
run: yarn install --frozen-lockfile
2626
- name: yarn build

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
node-version: [14.17, 16.9]
18+
node-version: [14, 16]
1919

2020
steps:
2121
- uses: actions/checkout@v2

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,32 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [13.0.0](https://github.com/spotify/web-scripts/compare/v12.0.0...v13.0.0) (2022-03-21)
7+
8+
### Bug Fixes
9+
10+
- **eslint:** specify parserOptions.project ([5ea256c](https://github.com/spotify/web-scripts/commit/5ea256cc7a05927d94dc5bf1974fdb4e3ee94bc1))
11+
- remove parserOptions.project ([c901579](https://github.com/spotify/web-scripts/commit/c901579eef6ed3723e94aca079d6f5171525ac41))
12+
- update yarn.lock ([9ed6d68](https://github.com/spotify/web-scripts/commit/9ed6d68746f35718861f94811eaaed0b24d1dda7))
13+
14+
### chore
15+
16+
- update [@typescript-eslint](https://github.com/typescript-eslint) from v4 to v5, eslint from v7 to v8 ([e284943](https://github.com/spotify/web-scripts/commit/e28494330a6dd9c2561370f56a4eed1ef152f23d))
17+
- update @spotify/eslint-plugin from v11 to v12 ([64f9885](https://github.com/spotify/web-scripts/commit/64f98853483a0354adcdcfbefb16076abab9328b))
18+
- update commitlint from v13 to v16 ([51edc87](https://github.com/spotify/web-scripts/commit/51edc87eee8041fa0def448ac3dfc588d4a61ee4))
19+
- update eslint from v7 to v8 ([725749c](https://github.com/spotify/web-scripts/commit/725749c6cf177de20b4011057198dd590cdbb742))
20+
- update jest-junit from v12 to v13 ([40701b0](https://github.com/spotify/web-scripts/commit/40701b0ccff1220b881dd4bdff866091799f8de7))
21+
- update semantic-release from v18 to v19 ([b9fecfd](https://github.com/spotify/web-scripts/commit/b9fecfd7bcbee493bc58187dca6aea8aeb4f06e1))
22+
23+
### BREAKING CHANGES
24+
25+
- update semantic-release from v18 to v19
26+
- update jest-junit from v12 to v13
27+
- update @typescript-eslint from v4 to v5, eslint from v7 to v8
28+
- update eslint from v7 to v8
29+
- update @spotify/eslint-plugin from v11 to v12
30+
- update commitlint from v13 to v16
31+
632
# [12.0.0](https://github.com/spotify/web-scripts/compare/v11.0.0...v12.0.0) (2021-09-22)
733

834
### Build System

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"packages": ["packages/*"],
33
"npmClient": "yarn",
44
"useWorkspaces": true,
5-
"version": "12.0.0",
5+
"version": "13.0.0",
66
"command": {
77
"publish": {
88
"ignoreChanges": [

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
],
2323
"devDependencies": {
2424
"@spotify/eslint-config-oss": "^1.0.0",
25-
"@spotify/eslint-plugin": "^12.0.0",
25+
"@spotify/eslint-plugin": "^13.0.0",
2626
"husky": "^7.0.0",
2727
"lerna": "^4.0.0",
2828
"typescript": "^4.2.3"

packages/create-web-scripts-library/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [13.0.0](https://github.com/spotify/web-scripts/compare/v12.0.0...v13.0.0) (2022-03-21)
7+
8+
**Note:** Version bump only for package @spotify/create-web-scripts-library
9+
610
# [12.0.0](https://github.com/spotify/web-scripts/compare/v11.0.0...v12.0.0) (2021-09-22)
711

812
### Build System

packages/create-web-scripts-library/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spotify/create-web-scripts-library",
3-
"version": "12.0.0",
3+
"version": "13.0.0",
44
"description": "Project scaffolding script for @spotify/web-scripts libraries",
55
"author": "Paul Marbach <[email protected]>",
66
"homepage": "https://github.com/spotify/web-scripts#readme",
@@ -41,7 +41,7 @@
4141
"read-pkg-up": "^7.0.1"
4242
},
4343
"devDependencies": {
44-
"@spotify/web-scripts": "^12.0.0",
44+
"@spotify/web-scripts": "^13.0.0",
4545
"@types/fs-extra": "^9.0.13",
4646
"tempy": "^1.0.1"
4747
},

packages/eslint-config-base/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [13.0.0](https://github.com/spotify/web-scripts/compare/v12.0.0...v13.0.0) (2022-03-21)
7+
8+
**Note:** Version bump only for package @spotify/eslint-config-base
9+
610
# [12.0.0](https://github.com/spotify/web-scripts/compare/v11.0.0...v12.0.0) (2021-09-22)
711

812
### Build System

0 commit comments

Comments
 (0)