@anolilab/prettier-config 4.2.0 → 5.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/CHANGELOG.md +43 -0
- package/README.md +28 -28
- package/dist/postinstall.js +4 -4
- package/dist/postinstall.js.map +1 -1
- package/dist/postinstall.mjs +4 -4
- package/dist/postinstall.mjs.map +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,46 @@
|
|
|
1
|
+
## @anolilab/prettier-config [5.0.0](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/prettier-config@4.2.1...@anolilab/prettier-config@5.0.0) (2023-07-18)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### ⚠ BREAKING CHANGES
|
|
5
|
+
|
|
6
|
+
* fixing broken releases that semantic-release did create
|
|
7
|
+
Signed-off-by: prisis <d.bannert@anolilab.de>
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* fixed broken releases ([d46de22](https://github.com/anolilab/javascript-style-guide/commit/d46de22a999cc09cc46f9a4d4e7682441705a861))
|
|
12
|
+
* update node version ([9a22309](https://github.com/anolilab/javascript-style-guide/commit/9a22309775cd2219320eed903ac3e22f66ffbe94))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Miscellaneous Chores
|
|
16
|
+
|
|
17
|
+
* "Update package versions in pnpm-lock.yaml" ([9c24c65](https://github.com/anolilab/javascript-style-guide/commit/9c24c6549de3f3df60fc4ca3cef3e8759da40a8e))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Dependencies
|
|
22
|
+
|
|
23
|
+
* **@anolilab/package-json-utils:** upgraded to 3.0.1
|
|
24
|
+
* **@anolilab/semantic-release-preset:** upgraded to 6.0.1
|
|
25
|
+
|
|
26
|
+
## @anolilab/prettier-config [4.2.1](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/prettier-config@4.2.0...@anolilab/prettier-config@4.2.1) (2023-07-05)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Bug Fixes
|
|
30
|
+
|
|
31
|
+
* Refactor async functions to use async/await and update tsconfig.json ([2a59d6e](https://github.com/anolilab/javascript-style-guide/commit/2a59d6e0d06a5a37c92b222961acbe9f17578f26))
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Miscellaneous Chores
|
|
35
|
+
|
|
36
|
+
* Reorganize Prettier config and update README examples ([cc2a4be](https://github.com/anolilab/javascript-style-guide/commit/cc2a4be9a223c722fcec370a8260028cc5f6fbd0))
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Dependencies
|
|
40
|
+
|
|
41
|
+
* **@anolilab/package-json-utils:** upgraded to 2.0.1
|
|
42
|
+
* **@anolilab/semantic-release-preset:** upgraded to 5.0.1
|
|
43
|
+
|
|
1
44
|
## @anolilab/prettier-config [4.2.0](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/prettier-config@4.1.4...@anolilab/prettier-config@4.2.0) (2023-07-03)
|
|
2
45
|
|
|
3
46
|
|
package/README.md
CHANGED
|
@@ -46,44 +46,44 @@ If you don’t have a `.prettierrc.js` and `.prettierignore`, we will create the
|
|
|
46
46
|
<summary>File content of the `.prettierrc.js`</summary>
|
|
47
47
|
|
|
48
48
|
```js
|
|
49
|
-
{
|
|
49
|
+
module.exports = {
|
|
50
|
+
// brackets are required for arrow function parameter, even when there is only one parameter
|
|
51
|
+
arrowParens: "always",
|
|
52
|
+
// spaces are required at the beginning and end of the braces
|
|
53
|
+
bracketSpacing: true,
|
|
54
|
+
// formats quoted code embedded
|
|
55
|
+
embeddedLanguageFormatting: "auto",
|
|
56
|
+
// lf for newline
|
|
57
|
+
endOfLine: "lf",
|
|
58
|
+
// decide whether to break the html according to the display style
|
|
59
|
+
htmlWhitespaceSensitivity: "css",
|
|
60
|
+
// No need to automatically insert @prettier at the beginning of the file
|
|
61
|
+
insertPragma: false,
|
|
62
|
+
// use double quotes instead of single quotes in jsx
|
|
63
|
+
jsxSingleQuote: false,
|
|
50
64
|
// max 160 characters per line
|
|
51
65
|
printWidth: 160,
|
|
52
|
-
// use
|
|
53
|
-
|
|
54
|
-
// use spaces instead of indentations
|
|
55
|
-
useTabs: false,
|
|
56
|
-
// semicolon at the end of the line
|
|
57
|
-
semi: true,
|
|
58
|
-
// use single quotes
|
|
59
|
-
singleQuote: false,
|
|
66
|
+
// use default break criteria
|
|
67
|
+
proseWrap: "preserve",
|
|
60
68
|
// object's key is quoted only when necessary
|
|
61
69
|
quoteProps: "as-needed",
|
|
62
|
-
|
|
63
|
-
jsxSingleQuote: false,
|
|
64
|
-
// all comma at the end
|
|
65
|
-
trailingComma: "all",
|
|
66
|
-
// spaces are required at the beginning and end of the braces
|
|
67
|
-
bracketSpacing: true,
|
|
68
|
-
// brackets are required for arrow function parameter, even when there is only one parameter
|
|
69
|
-
arrowParens: "always",
|
|
70
|
+
rangeEnd: Number.POSITIVE_INFINITY,
|
|
70
71
|
// format the entire contents of the file
|
|
71
72
|
rangeStart: 0,
|
|
72
|
-
rangeEnd: Number.POSITIVE_INFINITY,
|
|
73
73
|
// no need to write the beginning @prettier of the file
|
|
74
74
|
requirePragma: false,
|
|
75
|
-
//
|
|
76
|
-
|
|
77
|
-
// use
|
|
78
|
-
|
|
79
|
-
//
|
|
80
|
-
|
|
75
|
+
// semicolon at the end of the line
|
|
76
|
+
semi: true,
|
|
77
|
+
// use single quotes
|
|
78
|
+
singleQuote: false,
|
|
79
|
+
// use 4 spaces for indentation
|
|
80
|
+
tabWidth: 4,
|
|
81
|
+
// all comma at the end
|
|
82
|
+
trailingComma: "all",
|
|
83
|
+
// use spaces instead of indentations
|
|
84
|
+
useTabs: false,
|
|
81
85
|
// vue files script and style tags indentation
|
|
82
86
|
vueIndentScriptAndStyle: false,
|
|
83
|
-
// lf for newline
|
|
84
|
-
endOfLine: "lf",
|
|
85
|
-
// formats quoted code embedded
|
|
86
|
-
embeddedLanguageFormatting: "auto",
|
|
87
87
|
}
|
|
88
88
|
```
|
|
89
89
|
</details>
|
package/dist/postinstall.js
CHANGED
|
@@ -7,16 +7,16 @@ var path = require('path');
|
|
|
7
7
|
var util = require('util');
|
|
8
8
|
|
|
9
9
|
process.env.CI&&process.exit(0);var l=util.promisify(fs.writeFile);console.log("Configuring @anolilab/prettier-config",packageJsonUtils.projectPath,`
|
|
10
|
-
`);var e=".prettierrc",g=()=>{for(let i of [e,`${e}.js`,`${e}.cjs`,`${e}.json`,`${e}.json5`,`${e}.yaml`,`${e}.yml`,`${e}.toml`,"prettier.config.js","prettier.config.cjs"])if(fs.existsSync(path.join(packageJsonUtils.projectPath,i)))
|
|
10
|
+
`);var e=".prettierrc",g=async()=>{for(let i of [e,`${e}.js`,`${e}.cjs`,`${e}.json`,`${e}.json5`,`${e}.yaml`,`${e}.yml`,`${e}.toml`,"prettier.config.js","prettier.config.cjs"])if(fs.existsSync(path.join(packageJsonUtils.projectPath,i))){console.warn(`\u26A0\uFE0F ${i} already exists;
|
|
11
11
|
Make sure that it includes the following for @anolilab/prettier-config to work as it should:
|
|
12
12
|
${JSON.stringify(chunk3OYUO3P4_js.a,void 0,4)}
|
|
13
|
-
`)
|
|
13
|
+
`);return}let r=path.join(packageJsonUtils.projectPath,".prettierrc.js");await l(r,`${packageJsonUtils.packageIsTypeModule?'import config from "@anolilab/prettier-config";':'var config = require("@anolilab/prettier-config");'}
|
|
14
14
|
|
|
15
15
|
${packageJsonUtils.packageIsTypeModule?"export default":"module.exports ="} {
|
|
16
16
|
...config,
|
|
17
17
|
}
|
|
18
|
-
`,"utf8")},p=()=>{let r=path.join(packageJsonUtils.projectPath,".prettierignore");
|
|
18
|
+
`,"utf8");},p=async()=>{let r=path.join(packageJsonUtils.projectPath,".prettierignore");if(fs.existsSync(r)){console.warn("\u26A0\uFE0F .prettierignore already exists");return}await l(r,`${["*.md","*.sh","*.yml","*.svg","*.gif","*.log",".DS_Store","CNAME","AUTHORS","LICENSE","es/","lib/","dist/","coverage/"].join(`
|
|
19
19
|
`)}
|
|
20
|
-
`,"utf8")};(async()=>{try{await Promise.all([g(),p()]),console.log("\u{1F60E} Everything went well, have fun!"),process.exit(0);}catch(r){console.log("\u{1F62C} something went wrong:"),console.error(r),process.exit(1);}})();
|
|
20
|
+
`,"utf8");};(async()=>{try{await Promise.all([g(),p()]),console.log("\u{1F60E} Everything went well, have fun!"),process.exit(0);}catch(r){console.log("\u{1F62C} something went wrong:"),console.error(r),process.exit(1);}})();
|
|
21
21
|
//# sourceMappingURL=out.js.map
|
|
22
22
|
//# sourceMappingURL=postinstall.js.map
|
package/dist/postinstall.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/postinstall.ts"],"names":["packageIsTypeModule","projectPath","existsSync","writeFile","join","promisify","writeFileAsync","configFile","writePrettierRc","filename","src_default","prettierPath","writePrettierIgnore","error"],"mappings":"wCAAA,OAAS,uBAAAA,EAAqB,eAAAC,MAAmB,+BACjD,OAAS,cAAAC,EAAY,aAAAC,MAAiB,KACtC,OAAS,QAAAC,MAAY,OACrB,OAAS,aAAAC,MAAiB,OAItB,QAAQ,IAAI,IAEZ,QAAQ,KAAK,CAAC,EAGlB,IAAMC,EAAiBD,EAAUF,CAAS,EAE1C,QAAQ,IAAI,wCAAyCF,EAAa;AAAA,CAAI,EAEtE,IAAMM,EAAa,cAKbC,EAAkB,
|
|
1
|
+
{"version":3,"sources":["../src/postinstall.ts"],"names":["packageIsTypeModule","projectPath","existsSync","writeFile","join","promisify","writeFileAsync","configFile","writePrettierRc","filename","src_default","prettierPath","writePrettierIgnore","error"],"mappings":"wCAAA,OAAS,uBAAAA,EAAqB,eAAAC,MAAmB,+BACjD,OAAS,cAAAC,EAAY,aAAAC,MAAiB,KACtC,OAAS,QAAAC,MAAY,OACrB,OAAS,aAAAC,MAAiB,OAItB,QAAQ,IAAI,IAEZ,QAAQ,KAAK,CAAC,EAGlB,IAAMC,EAAiBD,EAAUF,CAAS,EAE1C,QAAQ,IAAI,wCAAyCF,EAAa;AAAA,CAAI,EAEtE,IAAMM,EAAa,cAKbC,EAAkB,SAAY,CAEhC,QAAWC,IAAY,CACnBF,EACA,GAAGA,CAAU,MACb,GAAGA,CAAU,OACb,GAAGA,CAAU,QACb,GAAGA,CAAU,SACb,GAAGA,CAAU,QACb,GAAGA,CAAU,OACb,GAAGA,CAAU,QACb,qBACA,qBACJ,EAEI,GAAIL,EAAWE,EAAKH,EAAaQ,CAAQ,CAAC,EAAG,CACzC,QAAQ,KAAK,iBAAOA,CAAQ;AAAA;AAAA,EAEtC,KAAK,UAAUC,EAAS,OAAW,CAAC,CAAC;AAAA,CAAI,EAE/B,MACJ,CAGJ,IAAMC,EAAeP,EAAKH,EAAa,gBAAgB,EAEvD,MAAMK,EACFK,EACA,GAAGX,EAAsB,kDAAoD,oDAAoD;AAAA;AAAA,EAEvIA,EAAsB,iBAAmB,kBAAkB;AAAA;AAAA;AAAA,EAIrD,MACJ,CACJ,EAKMY,EAAsB,SAAY,CACpC,IAAMD,EAAeP,EAAKH,EAAa,iBAAiB,EAGxD,GAAIC,EAAWS,CAAY,EAAG,CAC1B,QAAQ,KAAK,8CAAoC,EAEjD,MACJ,CAEA,MAAML,EACFK,EACA,GAAG,CAAC,OAAQ,OAAQ,QAAS,QAAS,QAAS,QAAS,YAAa,QAAS,UAAW,UAAW,MAAO,OAAQ,QAAS,WAAW,EAAE,KAAK;AAAA,CAAI,CAAC;AAAA,EACnJ,MACJ,CACJ,GAGC,SAAY,CACT,GAAI,CAEA,MAAM,QAAQ,IAAI,CAACH,EAAgB,EAAGI,EAAoB,CAAC,CAAC,EAE5D,QAAQ,IAAI,4CAAqC,EAGjD,QAAQ,KAAK,CAAC,CAClB,OAASC,EAAP,CACE,QAAQ,IAAI,kCAA2B,EACvC,QAAQ,MAAMA,CAAK,EAGnB,QAAQ,KAAK,CAAC,CAClB,CACJ,GAAG","sourcesContent":["import { packageIsTypeModule, projectPath } from \"@anolilab/package-json-utils\";\nimport { existsSync, writeFile } from \"node:fs\";\nimport { join } from \"node:path\";\nimport { promisify } from \"node:util\";\n\nimport content from \".\";\n\nif (process.env[\"CI\"]) {\n // eslint-disable-next-line unicorn/no-process-exit\n process.exit(0);\n}\n\nconst writeFileAsync = promisify(writeFile);\n\nconsole.log(\"Configuring @anolilab/prettier-config\", projectPath, \"\\n\");\n\nconst configFile = \".prettierrc\";\n\n/**\n * Writes .prettierrc.${m|c}js if it doesn't exist. Warns if it exists.\n */\nconst writePrettierRc = async () => {\n // eslint-disable-next-line no-restricted-syntax\n for (const filename of [\n configFile,\n `${configFile}.js`,\n `${configFile}.cjs`,\n `${configFile}.json`,\n `${configFile}.json5`,\n `${configFile}.yaml`,\n `${configFile}.yml`,\n `${configFile}.toml`,\n \"prettier.config.js\",\n \"prettier.config.cjs\",\n ]) {\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(join(projectPath, filename))) {\n console.warn(`⚠️ ${filename} already exists;\nMake sure that it includes the following for @anolilab/prettier-config to work as it should:\n${JSON.stringify(content, undefined, 4)}\\n`);\n\n return;\n }\n }\n\n const prettierPath = join(projectPath, \".prettierrc.js\");\n\n await writeFileAsync(\n prettierPath,\n `${packageIsTypeModule ? 'import config from \"@anolilab/prettier-config\";' : 'var config = require(\"@anolilab/prettier-config\");'}\n\n${packageIsTypeModule ? \"export default\" : \"module.exports =\"} {\n ...config,\n}\n`,\n \"utf8\",\n );\n};\n\n/**\n * Writes .prettierignore if it doesn't exist. Warns if it exists.\n */\nconst writePrettierIgnore = async () => {\n const prettierPath = join(projectPath, \".prettierignore\");\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(prettierPath)) {\n console.warn(\"⚠️ .prettierignore already exists\");\n\n return;\n }\n\n await writeFileAsync(\n prettierPath,\n `${[\"*.md\", \"*.sh\", \"*.yml\", \"*.svg\", \"*.gif\", \"*.log\", \".DS_Store\", \"CNAME\", \"AUTHORS\", \"LICENSE\", \"es/\", \"lib/\", \"dist/\", \"coverage/\"].join(\"\\n\")}\\n`,\n \"utf8\",\n );\n};\n\n// eslint-disable-next-line unicorn/prefer-top-level-await\n(async () => {\n try {\n // eslint-disable-next-line compat/compat\n await Promise.all([writePrettierRc(), writePrettierIgnore()]);\n\n console.log(\"😎 Everything went well, have fun!\");\n\n // eslint-disable-next-line unicorn/no-process-exit\n process.exit(0);\n } catch (error) {\n console.log(\"😬 something went wrong:\");\n console.error(error);\n\n // eslint-disable-next-line unicorn/no-process-exit\n process.exit(1);\n }\n})();\n"]}
|
package/dist/postinstall.mjs
CHANGED
|
@@ -5,16 +5,16 @@ import { join } from 'path';
|
|
|
5
5
|
import { promisify } from 'util';
|
|
6
6
|
|
|
7
7
|
process.env.CI&&process.exit(0);var l=promisify(writeFile);console.log("Configuring @anolilab/prettier-config",projectPath,`
|
|
8
|
-
`);var e=".prettierrc",g=()=>{for(let i of [e,`${e}.js`,`${e}.cjs`,`${e}.json`,`${e}.json5`,`${e}.yaml`,`${e}.yml`,`${e}.toml`,"prettier.config.js","prettier.config.cjs"])if(existsSync(join(projectPath,i)))
|
|
8
|
+
`);var e=".prettierrc",g=async()=>{for(let i of [e,`${e}.js`,`${e}.cjs`,`${e}.json`,`${e}.json5`,`${e}.yaml`,`${e}.yml`,`${e}.toml`,"prettier.config.js","prettier.config.cjs"])if(existsSync(join(projectPath,i))){console.warn(`\u26A0\uFE0F ${i} already exists;
|
|
9
9
|
Make sure that it includes the following for @anolilab/prettier-config to work as it should:
|
|
10
10
|
${JSON.stringify(a,void 0,4)}
|
|
11
|
-
`)
|
|
11
|
+
`);return}let r=join(projectPath,".prettierrc.js");await l(r,`${packageIsTypeModule?'import config from "@anolilab/prettier-config";':'var config = require("@anolilab/prettier-config");'}
|
|
12
12
|
|
|
13
13
|
${packageIsTypeModule?"export default":"module.exports ="} {
|
|
14
14
|
...config,
|
|
15
15
|
}
|
|
16
|
-
`,"utf8")},p=()=>{let r=join(projectPath,".prettierignore");
|
|
16
|
+
`,"utf8");},p=async()=>{let r=join(projectPath,".prettierignore");if(existsSync(r)){console.warn("\u26A0\uFE0F .prettierignore already exists");return}await l(r,`${["*.md","*.sh","*.yml","*.svg","*.gif","*.log",".DS_Store","CNAME","AUTHORS","LICENSE","es/","lib/","dist/","coverage/"].join(`
|
|
17
17
|
`)}
|
|
18
|
-
`,"utf8")};(async()=>{try{await Promise.all([g(),p()]),console.log("\u{1F60E} Everything went well, have fun!"),process.exit(0);}catch(r){console.log("\u{1F62C} something went wrong:"),console.error(r),process.exit(1);}})();
|
|
18
|
+
`,"utf8");};(async()=>{try{await Promise.all([g(),p()]),console.log("\u{1F60E} Everything went well, have fun!"),process.exit(0);}catch(r){console.log("\u{1F62C} something went wrong:"),console.error(r),process.exit(1);}})();
|
|
19
19
|
//# sourceMappingURL=out.js.map
|
|
20
20
|
//# sourceMappingURL=postinstall.mjs.map
|
package/dist/postinstall.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/postinstall.ts"],"names":["packageIsTypeModule","projectPath","existsSync","writeFile","join","promisify","writeFileAsync","configFile","writePrettierRc","filename","src_default","prettierPath","writePrettierIgnore","error"],"mappings":"yCAAA,OAAS,uBAAAA,EAAqB,eAAAC,MAAmB,+BACjD,OAAS,cAAAC,EAAY,aAAAC,MAAiB,KACtC,OAAS,QAAAC,MAAY,OACrB,OAAS,aAAAC,MAAiB,OAItB,QAAQ,IAAI,IAEZ,QAAQ,KAAK,CAAC,EAGlB,IAAMC,EAAiBD,EAAUF,CAAS,EAE1C,QAAQ,IAAI,wCAAyCF,EAAa;AAAA,CAAI,EAEtE,IAAMM,EAAa,cAKbC,EAAkB,
|
|
1
|
+
{"version":3,"sources":["../src/postinstall.ts"],"names":["packageIsTypeModule","projectPath","existsSync","writeFile","join","promisify","writeFileAsync","configFile","writePrettierRc","filename","src_default","prettierPath","writePrettierIgnore","error"],"mappings":"yCAAA,OAAS,uBAAAA,EAAqB,eAAAC,MAAmB,+BACjD,OAAS,cAAAC,EAAY,aAAAC,MAAiB,KACtC,OAAS,QAAAC,MAAY,OACrB,OAAS,aAAAC,MAAiB,OAItB,QAAQ,IAAI,IAEZ,QAAQ,KAAK,CAAC,EAGlB,IAAMC,EAAiBD,EAAUF,CAAS,EAE1C,QAAQ,IAAI,wCAAyCF,EAAa;AAAA,CAAI,EAEtE,IAAMM,EAAa,cAKbC,EAAkB,SAAY,CAEhC,QAAWC,IAAY,CACnBF,EACA,GAAGA,CAAU,MACb,GAAGA,CAAU,OACb,GAAGA,CAAU,QACb,GAAGA,CAAU,SACb,GAAGA,CAAU,QACb,GAAGA,CAAU,OACb,GAAGA,CAAU,QACb,qBACA,qBACJ,EAEI,GAAIL,EAAWE,EAAKH,EAAaQ,CAAQ,CAAC,EAAG,CACzC,QAAQ,KAAK,iBAAOA,CAAQ;AAAA;AAAA,EAEtC,KAAK,UAAUC,EAAS,OAAW,CAAC,CAAC;AAAA,CAAI,EAE/B,MACJ,CAGJ,IAAMC,EAAeP,EAAKH,EAAa,gBAAgB,EAEvD,MAAMK,EACFK,EACA,GAAGX,EAAsB,kDAAoD,oDAAoD;AAAA;AAAA,EAEvIA,EAAsB,iBAAmB,kBAAkB;AAAA;AAAA;AAAA,EAIrD,MACJ,CACJ,EAKMY,EAAsB,SAAY,CACpC,IAAMD,EAAeP,EAAKH,EAAa,iBAAiB,EAGxD,GAAIC,EAAWS,CAAY,EAAG,CAC1B,QAAQ,KAAK,8CAAoC,EAEjD,MACJ,CAEA,MAAML,EACFK,EACA,GAAG,CAAC,OAAQ,OAAQ,QAAS,QAAS,QAAS,QAAS,YAAa,QAAS,UAAW,UAAW,MAAO,OAAQ,QAAS,WAAW,EAAE,KAAK;AAAA,CAAI,CAAC;AAAA,EACnJ,MACJ,CACJ,GAGC,SAAY,CACT,GAAI,CAEA,MAAM,QAAQ,IAAI,CAACH,EAAgB,EAAGI,EAAoB,CAAC,CAAC,EAE5D,QAAQ,IAAI,4CAAqC,EAGjD,QAAQ,KAAK,CAAC,CAClB,OAASC,EAAP,CACE,QAAQ,IAAI,kCAA2B,EACvC,QAAQ,MAAMA,CAAK,EAGnB,QAAQ,KAAK,CAAC,CAClB,CACJ,GAAG","sourcesContent":["import { packageIsTypeModule, projectPath } from \"@anolilab/package-json-utils\";\nimport { existsSync, writeFile } from \"node:fs\";\nimport { join } from \"node:path\";\nimport { promisify } from \"node:util\";\n\nimport content from \".\";\n\nif (process.env[\"CI\"]) {\n // eslint-disable-next-line unicorn/no-process-exit\n process.exit(0);\n}\n\nconst writeFileAsync = promisify(writeFile);\n\nconsole.log(\"Configuring @anolilab/prettier-config\", projectPath, \"\\n\");\n\nconst configFile = \".prettierrc\";\n\n/**\n * Writes .prettierrc.${m|c}js if it doesn't exist. Warns if it exists.\n */\nconst writePrettierRc = async () => {\n // eslint-disable-next-line no-restricted-syntax\n for (const filename of [\n configFile,\n `${configFile}.js`,\n `${configFile}.cjs`,\n `${configFile}.json`,\n `${configFile}.json5`,\n `${configFile}.yaml`,\n `${configFile}.yml`,\n `${configFile}.toml`,\n \"prettier.config.js\",\n \"prettier.config.cjs\",\n ]) {\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(join(projectPath, filename))) {\n console.warn(`⚠️ ${filename} already exists;\nMake sure that it includes the following for @anolilab/prettier-config to work as it should:\n${JSON.stringify(content, undefined, 4)}\\n`);\n\n return;\n }\n }\n\n const prettierPath = join(projectPath, \".prettierrc.js\");\n\n await writeFileAsync(\n prettierPath,\n `${packageIsTypeModule ? 'import config from \"@anolilab/prettier-config\";' : 'var config = require(\"@anolilab/prettier-config\");'}\n\n${packageIsTypeModule ? \"export default\" : \"module.exports =\"} {\n ...config,\n}\n`,\n \"utf8\",\n );\n};\n\n/**\n * Writes .prettierignore if it doesn't exist. Warns if it exists.\n */\nconst writePrettierIgnore = async () => {\n const prettierPath = join(projectPath, \".prettierignore\");\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(prettierPath)) {\n console.warn(\"⚠️ .prettierignore already exists\");\n\n return;\n }\n\n await writeFileAsync(\n prettierPath,\n `${[\"*.md\", \"*.sh\", \"*.yml\", \"*.svg\", \"*.gif\", \"*.log\", \".DS_Store\", \"CNAME\", \"AUTHORS\", \"LICENSE\", \"es/\", \"lib/\", \"dist/\", \"coverage/\"].join(\"\\n\")}\\n`,\n \"utf8\",\n );\n};\n\n// eslint-disable-next-line unicorn/prefer-top-level-await\n(async () => {\n try {\n // eslint-disable-next-line compat/compat\n await Promise.all([writePrettierRc(), writePrettierIgnore()]);\n\n console.log(\"😎 Everything went well, have fun!\");\n\n // eslint-disable-next-line unicorn/no-process-exit\n process.exit(0);\n } catch (error) {\n console.log(\"😬 something went wrong:\");\n console.error(error);\n\n // eslint-disable-next-line unicorn/no-process-exit\n process.exit(1);\n }\n})();\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anolilab/prettier-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "Prettier shareable config for Anolilab.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"css",
|
|
@@ -56,21 +56,21 @@
|
|
|
56
56
|
"postinstall": "node ./skip.js || node ./dist/postinstall.js"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@anolilab/package-json-utils": "
|
|
59
|
+
"@anolilab/package-json-utils": "3.0.1"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@anolilab/semantic-release-preset": "
|
|
63
|
-
"prettier": "^
|
|
62
|
+
"@anolilab/semantic-release-preset": "6.0.1",
|
|
63
|
+
"prettier": "^3.0.0",
|
|
64
64
|
"rimraf": "^5.0.1",
|
|
65
|
-
"semantic-release": "^21.0.
|
|
65
|
+
"semantic-release": "^21.0.7",
|
|
66
66
|
"tsup": "^7.1.0",
|
|
67
|
-
"vitest": "^0.
|
|
67
|
+
"vitest": "^0.33.0"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
70
|
"prettier": "2.x"
|
|
71
71
|
},
|
|
72
72
|
"engines": {
|
|
73
|
-
"node": ">=
|
|
73
|
+
"node": ">=18"
|
|
74
74
|
},
|
|
75
75
|
"publishConfig": {
|
|
76
76
|
"access": "public",
|