@storm-software/prettier 0.57.78 → 0.57.80

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 CHANGED
@@ -2,6 +2,18 @@
2
2
 
3
3
  # Changelog for Storm Ops - Prettier
4
4
 
5
+ ## [0.57.79](https://github.com/storm-software/storm-ops/releases/tag/prettier%400.57.79) (01/28/2026)
6
+
7
+ ### Bug Fixes
8
+
9
+ - **prettier:** Increase `printWidth` for JSON files to prevent reformatting ([b12ad89d9](https://github.com/storm-software/storm-ops/commit/b12ad89d9))
10
+
11
+ ## [0.57.78](https://github.com/storm-software/storm-ops/releases/tag/prettier%400.57.78) (01/27/2026)
12
+
13
+ ### Miscellaneous
14
+
15
+ - **prettier:** Clean up `json` prettier config ([988aeced3](https://github.com/storm-software/storm-ops/commit/988aeced3))
16
+
5
17
  ## [0.57.77](https://github.com/storm-software/storm-ops/releases/tag/prettier%400.57.77) (01/27/2026)
6
18
 
7
19
  ### Miscellaneous
package/base.json CHANGED
@@ -57,10 +57,6 @@
57
57
  }
58
58
  }
59
59
  ],
60
- "plugins": [
61
- "prettier-plugin-sh",
62
- "prettier-plugin-pkg",
63
- "prettier-plugin-organize-imports"
64
- ],
60
+ "plugins": ["prettier-plugin-sh", "prettier-plugin-pkg", "prettier-plugin-organize-imports"],
65
61
  "organizeImportsSkipDestructiveCodeActions": false
66
62
  }
package/index.cjs CHANGED
@@ -65,7 +65,8 @@ module.exports = {
65
65
  options: {
66
66
  parser: "json",
67
67
  trailingComma: "none",
68
- objectWrap: "preserve"
68
+ objectWrap: "preserve",
69
+ printWidth: 120
69
70
  }
70
71
  },
71
72
  {
package/meta.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "inputs": {
3
3
  "packages/prettier/src/index.ts": {
4
- "bytes": 1726,
4
+ "bytes": 1751,
5
5
  "imports": [],
6
6
  "format": "cjs"
7
7
  }
@@ -13,10 +13,10 @@
13
13
  "entryPoint": "packages/prettier/src/index.ts",
14
14
  "inputs": {
15
15
  "packages/prettier/src/index.ts": {
16
- "bytesInOutput": 1726
16
+ "bytesInOutput": 1751
17
17
  }
18
18
  },
19
- "bytes": 1760
19
+ "bytes": 1785
20
20
  }
21
21
  }
22
22
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/prettier",
3
- "version": "0.57.78",
3
+ "version": "0.57.80",
4
4
  "type": "commonjs",
5
5
  "description": "⚡ A package containing the base Prettier configuration used by Storm Software across many projects.",
6
6
  "repository": {
@@ -76,5 +76,5 @@
76
76
  "prettier-plugin-tailwindcss": "^0.6.14"
77
77
  },
78
78
  "publishConfig": { "access": "public" },
79
- "gitHead": "86f3b992bd770d4734a52bdc62f83dfb4b545b75"
79
+ "gitHead": "0baa29a84f59924568ce3247fb7a804427c5dc2a"
80
80
  }