Skip to content

Commit

Permalink
Prepare 34.0.0 (#296)
Browse files Browse the repository at this point in the history
- Removed: `stylelint` less than `15.10.0` from peer dependencies
- Changed: updated to [`stylelint-config-recommended@13.0.0`](https://github.com/stylelint/stylelint-config-recommended/releases/tag/13.0.0).
- updated test introduced in #295

---------

Co-authored-by: Richard Hallows <jeddy3@users.noreply.github.com>
  • Loading branch information
mattxwang and jeddy3 committed Jul 4, 2023
1 parent 9a68907 commit da11594
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 44 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
# Changelog

# 33.0.0
## 34.0.0

- Removed: `stylelint` less than `15.10.0` from peer dependencies
- Changed: updated to [`stylelint-config-recommended@13.0.0`](https://github.com/stylelint/stylelint-config-recommended/releases/tag/13.0.0).

## 33.0.0

- Removed: `stylelint` less than `15.5.0` from peer dependencies.
- Changed: updated to [`stylelint-config-recommended@12.0.0`](https://github.com/stylelint/stylelint-config-recommended/releases/tag/12.0.0).
- Changed: restored `declaration-block-single-line-max-declarations` removed on `30.0.0`.

# 32.0.0
## 32.0.0

- Removed: `stylelint` less than `15.4.0` from peer dependencies.
- Added: `media-feature-range-notation: "context"` rule.
Expand Down
2 changes: 1 addition & 1 deletion __tests__/engines.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const pkg = require('../package.json');
describe('engines.node', () => {
it("is the same as stylelint's one", () => {
const stylelintVersion = pkg.peerDependencies.stylelint;
const [nodeVersion] = JSON.parse(
const nodeVersion = JSON.parse(
execFileSync('npm', [
'view',
'--json',
Expand Down
79 changes: 41 additions & 38 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
]
},
"dependencies": {
"stylelint-config-recommended": "^12.0.0"
"stylelint-config-recommended": "^13.0.0"
},
"devDependencies": {
"@stylelint/prettier-config": "^2.0.0",
Expand All @@ -62,10 +62,10 @@
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"remark-cli": "^11.0.0",
"stylelint": "^15.8.0"
"stylelint": "^15.10.0"
},
"peerDependencies": {
"stylelint": "^15.5.0"
"stylelint": "^15.10.0"
},
"engines": {
"node": "^14.13.1 || >=16.0.0"
Expand Down

0 comments on commit da11594

Please sign in to comment.