@anolilab/prettier-config 9.0.0 → 9.1.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 +15 -2
- package/dist/bin.mjs +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,25 @@
|
|
|
1
|
+
## @anolilab/prettier-config [9.1.1](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/prettier-config@9.1.0...@anolilab/prettier-config@9.1.1) (2026-02-21)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* resolve pre-commit hook failures and lint errors across packages ([a4707c3](https://github.com/anolilab/javascript-style-guide/commit/a4707c38941c7adb55a7a606f9689caa9c8f7962))
|
|
6
|
+
|
|
7
|
+
### Miscellaneous Chores
|
|
8
|
+
|
|
9
|
+
* **prettier-config:** add .prettierignore ([b07d6c3](https://github.com/anolilab/javascript-style-guide/commit/b07d6c39480f2bd612585492db1166f5b4013ff8))
|
|
10
|
+
* **prettier-config:** migrate to ESM prettier config and fix bin.ts ([970de06](https://github.com/anolilab/javascript-style-guide/commit/970de062cf51a62726e55d24db3080e85ef6cffb))
|
|
11
|
+
|
|
12
|
+
## @anolilab/prettier-config [9.1.0](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/prettier-config@9.0.0...@anolilab/prettier-config@9.1.0) (2026-01-29)
|
|
13
|
+
|
|
1
14
|
## @anolilab/prettier-config [9.0.0](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/prettier-config@8.0.1...@anolilab/prettier-config@9.0.0) (2026-01-11)
|
|
2
15
|
|
|
3
16
|
### Bug Fixes
|
|
4
17
|
|
|
5
|
-
|
|
18
|
+
- update package versions and configurations ([d4c690d](https://github.com/anolilab/javascript-style-guide/commit/d4c690d6132fb7c1734a299f64fbc1020190a300))
|
|
6
19
|
|
|
7
20
|
### Miscellaneous Chores
|
|
8
21
|
|
|
9
|
-
|
|
22
|
+
- update package versions and configurations ([daf1e9a](https://github.com/anolilab/javascript-style-guide/commit/daf1e9af81c2ea12d07d9c8d804b2431d953e229))
|
|
10
23
|
|
|
11
24
|
## @anolilab/prettier-config [8.0.1](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/prettier-config@8.0.0...@anolilab/prettier-config@8.0.1) (2026-01-05)
|
|
12
25
|
|
package/dist/bin.mjs
CHANGED
|
@@ -9,5 +9,5 @@ ${r?"export default":"module.exports ="} {
|
|
|
9
9
|
}
|
|
10
10
|
`,"utf8")},"writePrettierRc"),y=f(async e=>{const r=i(e,".prettierignore");if(a(r)){console.warn("⚠️ .prettierignore already exists");return}await c(r,`${["*.md","*.sh","*.yml","*.svg","*.gif","*.log",".DS_Store","CNAME","AUTHORS","LICENSE","es/","lib/","dist/","coverage/"].join(`
|
|
11
11
|
`)}
|
|
12
|
-
`,"utf8")},"writePrettierIgnore");(async()=>{const e=process.cwd(),r=i(e,"package.json");a(r)||(console.error("No package.json found in the current directory. You need to run this command in a directory with a package.json file."),s(1));const n=JSON.parse(await g(r,"
|
|
12
|
+
`,"utf8")},"writePrettierIgnore");(async()=>{const e=process.cwd(),r=i(e,"package.json");a(r)||(console.error("No package.json found in the current directory. You need to run this command in a directory with a package.json file."),s(1));const n=JSON.parse(await g(r,"utf8"));console.log("Configuring @anolilab/prettier-config",e,`
|
|
13
13
|
`);try{await d(e,n.type==="module"),await y(e),console.log("Everything went well, have fun!"),s(0)}catch(o){console.error("Something went wrong:",o),s(1)}})();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anolilab/prettier-config",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.1.1",
|
|
4
4
|
"description": "Prettier shareable config for Anolilab.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"css",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"LICENSE.md"
|
|
67
67
|
],
|
|
68
68
|
"peerDependencies": {
|
|
69
|
-
"prettier": "
|
|
69
|
+
"prettier": "3.8.1"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
72
|
"node": ">=20.18.* <=25.*"
|