Skip to content

Commit

Permalink
Prepare 18.0.0 (#212)
Browse files Browse the repository at this point in the history
* Prepare 18.0.0

- Write changelog
- Bump dependencies

* Update changelog

* Add `merge_group` trigger for merge queue

https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-a-merge-queue

* Remove needless indentation from changelog
  • Loading branch information
ybiquitous committed Feb 10, 2023
1 parent 43367b2 commit e68db5b
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 34 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/nodejs.yml
Expand Up @@ -6,8 +6,7 @@ on:
- main
- 'dependabot/**'
pull_request:
branches:
- '**'
merge_group:

jobs:
lint:
Expand Down
19 changes: 19 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,24 @@
# Changelog

## 18.0.0

- Removed: Jest rules from the default config.
- Changed: `eslint-plugin-jest` to optional peer dependencies.
- Added: Jest only config `"stylelint/jest"`.
- Added: `eslint` to peer dependencies.

Migration notice: if you want to continue Jest rules, you need to:

- run `npm install eslint-plugin-jest --save-dev`
- add `"stylelint/jest"` to `extends` in your ESlint config like this:

```diff json
{
- "extends": ["stylelint"]
+ "extends": ["stylelint", "stylelint/jest"]
}
```

## 17.1.0

- Changed: `parserOptions.ecmaVersion` from `2019` to `2020`.
Expand Down
56 changes: 28 additions & 28 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -27,17 +27,17 @@
"testRegex": ".+\\.test\\.js$"
},
"dependencies": {
"eslint-config-prettier": "^8.5.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-regexp": "^1.11.0"
"eslint-plugin-regexp": "^1.12.0"
},
"devDependencies": {
"@stylelint/prettier-config": "^2.0.0",
"eslint": "^8.33.0",
"eslint-plugin-jest": "^27.2.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.4.2",
"np": "^7.6.3",
"prettier": "^2.8.1"
"prettier": "^2.8.4"
},
"peerDependencies": {
"eslint": ">= 8.33.0",
Expand Down

0 comments on commit e68db5b

Please sign in to comment.