@will-stone/prettier-config 9.0.0 → 9.0.1
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/CHANGELOG.md +8 -1
- package/index.js +2 -4
- package/package.json +2 -3
- /package/{prettier.config.js → prettier.config.mjs} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [9.0.1](https://github.com/will-stone/prettier-config/compare/v9.0.0...v9.0.1) (2025-01-14)
|
|
4
|
+
|
|
5
|
+
### Patches
|
|
6
|
+
|
|
7
|
+
* Fix incomparability with pnpm envs ([682f7bd](https://github.com/will-stone/prettier-config/commit/682f7bd93eb077c8d98ab1ce202e3e60ae7a4fb4))
|
|
8
|
+
|
|
3
9
|
## [9.0.0](https://github.com/will-stone/prettier-config/compare/v8.0.1...v9.0.0) (2025-01-13)
|
|
4
10
|
|
|
5
11
|
### Major changes
|
|
6
12
|
|
|
7
|
-
|
|
13
|
+
- Move to JS-based config
|
|
14
|
+
([961d951](https://github.com/will-stone/prettier-config/commit/961d951e13c0ffc82a67646745a7231694565014))
|
|
8
15
|
|
|
9
16
|
## [8.0.1](https://github.com/will-stone/prettier-config/compare/v8.0.0...v8.0.1) (2024-05-27)
|
|
10
17
|
|
package/index.js
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export default {
|
|
1
|
+
module.exports = {
|
|
4
2
|
proseWrap: 'always',
|
|
5
3
|
semi: false,
|
|
6
4
|
singleQuote: true,
|
|
7
|
-
plugins: [
|
|
5
|
+
plugins: [require.resolve('prettier-plugin-packagejson')],
|
|
8
6
|
}
|
package/package.json
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@will-stone/prettier-config",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.1",
|
|
4
4
|
"description": "My personal Prettier config",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "https://github.com/will-stone/prettier-config"
|
|
7
7
|
},
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"author": "Will Stone",
|
|
10
|
-
"
|
|
11
|
-
"exports": "./index.js",
|
|
10
|
+
"main": "./index.js",
|
|
12
11
|
"scripts": {
|
|
13
12
|
"prepare": "simple-git-hooks",
|
|
14
13
|
"release": "release-it"
|
|
File without changes
|