Skip to content

Commit 5bdac49

Browse files
Version Packages (#1490)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 977ad46 commit 5bdac49

File tree

3 files changed

+26
-25
lines changed

3 files changed

+26
-25
lines changed

.changeset/all-planets-repeat.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

packages/sku/CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# sku
22

3+
## 15.8.0
4+
5+
### Minor Changes
6+
7+
- lint|format: Enforce sorted keys in package.json ([#1480](https://github.com/seek-oss/sku/pull/1480))
8+
9+
ESLint will now warn if the keys in package.json are not sorted. Running `sku format` will automatically fix the sort order.
10+
11+
If you need to, you can disable this rule by using `dangerouslySetESLintConfig` in your sku config (not recommended):
12+
13+
```ts
14+
const config = {
15+
...,
16+
dangerouslySetESLintConfig: (esLintConfig) => [
17+
...esLintConfig,
18+
{
19+
files: ['**/package.json'],
20+
rules: {
21+
'package-json/sort': 'off',
22+
},
23+
},
24+
],
25+
}
26+
```
27+
328
## 15.7.1
429

530
### Patch Changes

packages/sku/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sku",
3-
"version": "15.7.1",
3+
"version": "15.8.0",
44
"description": "Front-end development toolkit, powered by Webpack, Babel, Vanilla Extract and Jest",
55
"types": "./dist/index.d.mts",
66
"bin": {

0 commit comments

Comments
 (0)