@anolilab/prettier-config 5.0.0 → 5.0.2

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/package.json +8 -7
  3. package/skip.js +7 -0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,36 @@
1
+ ## @anolilab/prettier-config [5.0.2](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/prettier-config@5.0.1...@anolilab/prettier-config@5.0.2) (2023-08-04)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Update package dependencies ([a8786f2](https://github.com/anolilab/javascript-style-guide/commit/a8786f219badb9ebd4af825d28be85d3d2eea89c))
7
+
8
+
9
+
10
+ ### Dependencies
11
+
12
+ * **@anolilab/package-json-utils:** upgraded to 3.0.3
13
+ * **@anolilab/semantic-release-preset:** upgraded to 6.0.3
14
+
15
+ ## @anolilab/prettier-config [5.0.1](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/prettier-config@5.0.0...@anolilab/prettier-config@5.0.1) (2023-07-26)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * included 'skip.js' in package.json for several packages ([1c84b33](https://github.com/anolilab/javascript-style-guide/commit/1c84b33435abc75666214632eba4566f36c78e1a))
21
+
22
+
23
+ ### Miscellaneous Chores
24
+
25
+ * **deps:** update dependency prettier to v3 ([f9c2fb6](https://github.com/anolilab/javascript-style-guide/commit/f9c2fb6dd2b607e2b8c56963dd0a65b3e663c987))
26
+
27
+
28
+
29
+ ### Dependencies
30
+
31
+ * **@anolilab/package-json-utils:** upgraded to 3.0.2
32
+ * **@anolilab/semantic-release-preset:** upgraded to 6.0.2
33
+
1
34
  ## @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
35
 
3
36
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anolilab/prettier-config",
3
- "version": "5.0.0",
3
+ "version": "5.0.2",
4
4
  "description": "Prettier shareable config for Anolilab.",
5
5
  "keywords": [
6
6
  "css",
@@ -45,6 +45,7 @@
45
45
  "types": "dist/index.d.ts",
46
46
  "files": [
47
47
  "dist",
48
+ "skip.js",
48
49
  "README.md",
49
50
  "CHANGELOG.md",
50
51
  "LICENSE.md"
@@ -56,18 +57,18 @@
56
57
  "postinstall": "node ./skip.js || node ./dist/postinstall.js"
57
58
  },
58
59
  "dependencies": {
59
- "@anolilab/package-json-utils": "3.0.1"
60
+ "@anolilab/package-json-utils": "3.0.3"
60
61
  },
61
62
  "devDependencies": {
62
- "@anolilab/semantic-release-preset": "6.0.1",
63
- "prettier": "^3.0.0",
63
+ "@anolilab/semantic-release-preset": "6.0.3",
64
+ "prettier": "^3.0.1",
64
65
  "rimraf": "^5.0.1",
65
66
  "semantic-release": "^21.0.7",
66
- "tsup": "^7.1.0",
67
- "vitest": "^0.33.0"
67
+ "tsup": "^7.2.0",
68
+ "vitest": "^0.34.1"
68
69
  },
69
70
  "peerDependencies": {
70
- "prettier": "2.x"
71
+ "prettier": "2.x || 3.x"
71
72
  },
72
73
  "engines": {
73
74
  "node": ">=18"
package/skip.js ADDED
@@ -0,0 +1,7 @@
1
+ if (process.env.SKIP_BUILD) {
2
+ // eslint-disable-next-line unicorn/no-process-exit
3
+ process.exit(0);
4
+ } else {
5
+ // eslint-disable-next-line unicorn/no-process-exit
6
+ process.exit(1);
7
+ }