@will-stone/prettier-config 11.0.0 → 12.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/publish.yml +4 -2
- package/.nvmrc +1 -1
- package/.release-it.json +3 -0
- package/CHANGELOG.md +15 -1
- package/index.js +10 -1
- package/package.json +4 -3
|
@@ -7,6 +7,9 @@ on:
|
|
|
7
7
|
jobs:
|
|
8
8
|
release:
|
|
9
9
|
runs-on: ubuntu-latest
|
|
10
|
+
permissions:
|
|
11
|
+
id-token: write
|
|
12
|
+
contents: write
|
|
10
13
|
steps:
|
|
11
14
|
- uses: actions/checkout@v4
|
|
12
15
|
with:
|
|
@@ -15,7 +18,7 @@ jobs:
|
|
|
15
18
|
uses: pnpm/action-setup@v4
|
|
16
19
|
- uses: actions/setup-node@v4
|
|
17
20
|
with:
|
|
18
|
-
node-version: '
|
|
21
|
+
node-version: '24.x'
|
|
19
22
|
registry-url: 'https://registry.npmjs.org'
|
|
20
23
|
cache: 'pnpm'
|
|
21
24
|
- name: setup config
|
|
@@ -26,5 +29,4 @@ jobs:
|
|
|
26
29
|
- run: pnpm lint
|
|
27
30
|
- run: pnpm release
|
|
28
31
|
env:
|
|
29
|
-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
30
32
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
24
|
package/.release-it.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [12.0.0](https://github.com/will-stone/prettier-config/compare/v11.0.1...v12.0.0) (2026-02-07)
|
|
4
|
+
|
|
5
|
+
### Major changes
|
|
6
|
+
|
|
7
|
+
* Change print width to 100 ([5b3af6c](https://github.com/will-stone/prettier-config/commit/5b3af6c35923ec30a1864f0f46e419fe8ba04d9d))
|
|
8
|
+
|
|
9
|
+
## [11.0.1](https://github.com/will-stone/prettier-config/compare/v11.0.0...v11.0.1) (2025-04-19)
|
|
10
|
+
|
|
11
|
+
### Patches
|
|
12
|
+
|
|
13
|
+
- Add repo type
|
|
14
|
+
([60b8bca](https://github.com/will-stone/prettier-config/commit/60b8bca84ffe6b37b3273195dca4a47ef58f05a2))
|
|
15
|
+
|
|
3
16
|
## [11.0.0](https://github.com/will-stone/prettier-config/compare/v10.0.0...v11.0.0) (2025-04-19)
|
|
4
17
|
|
|
5
18
|
### Major changes
|
|
6
19
|
|
|
7
|
-
|
|
20
|
+
- Remove eslint-plugin-package-json
|
|
21
|
+
([1892b84](https://github.com/will-stone/prettier-config/commit/1892b84faf8a7b497867efeaac2236d615e22568))
|
|
8
22
|
|
|
9
23
|
## [10.0.0](https://github.com/will-stone/prettier-config/compare/v9.0.5...v10.0.0) (2025-04-19)
|
|
10
24
|
|
package/index.js
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
// @ts-check
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @see https://prettier.io/docs/configuration
|
|
5
|
+
* @type {import("prettier").Config}
|
|
6
|
+
*/
|
|
7
|
+
const config = {
|
|
8
|
+
printWidth: 100,
|
|
2
9
|
proseWrap: 'always',
|
|
3
10
|
semi: false,
|
|
4
11
|
singleQuote: true,
|
|
5
12
|
}
|
|
13
|
+
|
|
14
|
+
export default config
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@will-stone/prettier-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "12.0.0",
|
|
4
4
|
"description": "My personal Prettier config",
|
|
5
5
|
"repository": {
|
|
6
|
-
"
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/will-stone/prettier-config.git"
|
|
7
8
|
},
|
|
8
9
|
"license": "MIT",
|
|
9
10
|
"author": "Will Stone",
|
|
@@ -25,7 +26,7 @@
|
|
|
25
26
|
"devDependencies": {
|
|
26
27
|
"@commits-with-character/conventional-changelog-preset": "^4.0.0",
|
|
27
28
|
"@release-it/conventional-changelog": "^10.0.1",
|
|
28
|
-
"@will-stone/eslint-config": "^
|
|
29
|
+
"@will-stone/eslint-config": "^16.0.0",
|
|
29
30
|
"eslint": "^9.25.0",
|
|
30
31
|
"husky": "^9.1.7",
|
|
31
32
|
"lint-staged": "^15.5.1",
|