@storm-software/prettier 0.31.13 → 0.31.17

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/.prettierignore CHANGED
@@ -23,7 +23,6 @@ bun.lockb
23
23
  **/__snapshots__/**
24
24
  **/catalog-package/**
25
25
  **/*.hbs
26
- **/CODEOWNERS
27
26
  **/CODE_OF_CONDUCT.md
28
27
  **/CONTRIBUTING.md
29
28
  **/LICENSE
package/CHANGELOG.md CHANGED
@@ -1,3 +1,33 @@
1
+ ## 0.31.17 (2025-02-04)
2
+
3
+ ### Bug Fixes
4
+
5
+ - **monorepo:** Resolve issue with inconsistent `chalk` versions ([e20742ea0](https://github.com/storm-software/storm-ops/commit/e20742ea0))
6
+
7
+ ## 0.31.16 (2025-02-04)
8
+
9
+ ### Bug Fixes
10
+
11
+ - **monorepo:** Resolved issue with invalid `prettier` config used in hooks ([34974919d](https://github.com/storm-software/storm-ops/commit/34974919d))
12
+ - **linting-tools:** Bundle `manypkg` packages in dist ([6f0efb11a](https://github.com/storm-software/storm-ops/commit/6f0efb11a))
13
+
14
+ ### Miscellaneous
15
+
16
+ - **monorepo:** Reformat the repo's files ([f33b07626](https://github.com/storm-software/storm-ops/commit/f33b07626))
17
+ - **monorepo:** Regenerate README markdown files ([d147539be](https://github.com/storm-software/storm-ops/commit/d147539be))
18
+
19
+ ## 0.31.15 (2025-02-03)
20
+
21
+ ### Bug Fixes
22
+
23
+ - **linting-tools:** Resolve issue with bundling `fast-glob` package ([f823943a6](https://github.com/storm-software/storm-ops/commit/f823943a6))
24
+
25
+ ## 0.31.14 (2025-02-03)
26
+
27
+ ### Miscellaneous
28
+
29
+ - **monorepo:** Regenerate README markdown files ([949c6f3cd](https://github.com/storm-software/storm-ops/commit/949c6f3cd))
30
+
1
31
  ## 0.31.13 (2025-02-02)
2
32
 
3
33
  ### Miscellaneous
package/README.md CHANGED
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
21
21
 
22
22
  <h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
23
23
 
24
- [![Version](https://img.shields.io/badge/version-0.31.12-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-0.31.16-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
package/index.cjs CHANGED
@@ -1,56 +1,56 @@
1
1
  // packages/prettier/src/index.ts
2
2
  module.exports = {
3
- "proseWrap": "always",
4
- "trailingComma": "none",
5
- "tabWidth": 2,
6
- "semi": true,
7
- "singleQuote": false,
8
- "quoteProps": "preserve",
9
- "insertPragma": false,
10
- "bracketSameLine": true,
11
- "printWidth": 80,
12
- "bracketSpacing": true,
13
- "arrowParens": "avoid",
14
- "endOfLine": "lf",
15
- "overrides": [
3
+ proseWrap: "always",
4
+ trailingComma: "none",
5
+ tabWidth: 2,
6
+ semi: true,
7
+ singleQuote: false,
8
+ quoteProps: "preserve",
9
+ insertPragma: false,
10
+ bracketSameLine: true,
11
+ printWidth: 80,
12
+ bracketSpacing: true,
13
+ arrowParens: "avoid",
14
+ endOfLine: "lf",
15
+ overrides: [
16
16
  {
17
- "files": "**/*.md{,x}",
18
- "options": {
19
- "semi": false,
20
- "trailingComma": "none"
17
+ files: "**/*.md{,x}",
18
+ options: {
19
+ semi: false,
20
+ trailingComma: "none"
21
21
  }
22
22
  },
23
23
  {
24
- "files": "**/*.svg",
25
- "options": {
26
- "parser": "html"
24
+ files: "**/*.svg",
25
+ options: {
26
+ parser: "html"
27
27
  }
28
28
  },
29
- { "files": "**/*.json", "options": { "trailingComma": "none" } },
29
+ { files: "**/*.json", options: { trailingComma: "none" } },
30
30
  {
31
- "files": "**/*.hbs",
32
- "options": {
33
- "parser": "html"
31
+ files: "**/*.hbs",
32
+ options: {
33
+ parser: "html"
34
34
  }
35
35
  },
36
36
  {
37
- "files": "**/*.prisma",
38
- "options": {
39
- "parser": "prisma-parse"
37
+ files: "**/*.prisma",
38
+ options: {
39
+ parser: "prisma-parse"
40
40
  }
41
41
  },
42
42
  {
43
- "files": "**/{*.acid,*.aci,*.acidic}",
44
- "options": {
45
- "parser": "prisma-parse"
43
+ files: "**/{*.acid,*.aci,*.acidic}",
44
+ options: {
45
+ parser: "prisma-parse"
46
46
  }
47
47
  }
48
48
  ],
49
- "plugins": [
49
+ plugins: [
50
50
  "prettier-plugin-sh",
51
51
  "prettier-plugin-pkg",
52
52
  "prettier-plugin-prisma",
53
53
  "prettier-plugin-organize-imports"
54
54
  ],
55
- "organizeImportsSkipDestructiveCodeActions": false
55
+ organizeImportsSkipDestructiveCodeActions: false
56
56
  };
package/meta.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "inputs": {
3
3
  "packages/prettier/src/index.ts": {
4
- "bytes": 1120,
4
+ "bytes": 1065,
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": 1120
16
+ "bytesInOutput": 1052
17
17
  }
18
18
  },
19
- "bytes": 1154
19
+ "bytes": 1086
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.31.13",
3
+ "version": "0.31.17",
4
4
  "type": "commonjs",
5
5
  "description": "⚡ A package containing the base Prettier configuration used by Storm Software across many projects.",
6
6
  "repository": {