@storm-software/prettier 0.48.2 → 0.49.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 +15 -0
- package/README.md +1 -1
- package/{src/index.ts → index.cjs} +1 -0
- package/meta.json +22 -0
- package/package.json +12 -32
- package/project.json +0 -47
- package/tsconfig.json +0 -8
- /package/{src/.prettierignore → .prettierignore} +0 -0
- /package/{src/all.json → all.json} +0 -0
- /package/{src/base.json → base.json} +0 -0
- /package/{src/config.json → config.json} +0 -0
- /package/{src/jsdoc.json → jsdoc.json} +0 -0
- /package/{src/prisma.json → prisma.json} +0 -0
- /package/{src/solidity.json → solidity.json} +0 -0
- /package/{src/tailwindcss.json → tailwindcss.json} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Prettier
|
|
4
4
|
|
|
5
|
+
## [0.49.0](https://github.com/storm-software/storm-ops/releases/tag/prettier%400.49.0) (2025-05-06)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- **workspace-tools:** Update the release executor to replace workspace
|
|
10
|
+
configurations
|
|
11
|
+
([7d2aa456c](https://github.com/storm-software/storm-ops/commit/7d2aa456c))
|
|
12
|
+
|
|
13
|
+
### Miscellaneous
|
|
14
|
+
|
|
15
|
+
- **monorepo:** Regenerate README markdown files
|
|
16
|
+
([96f241a4d](https://github.com/storm-software/storm-ops/commit/96f241a4d))
|
|
17
|
+
- **monorepo:** Regenerate README markdown files
|
|
18
|
+
([17bbe7e16](https://github.com/storm-software/storm-ops/commit/17bbe7e16))
|
|
19
|
+
|
|
5
20
|
## [0.48.2](https://github.com/storm-software/storm-ops/releases/tag/prettier%400.48.2) (2025-05-06)
|
|
6
21
|
|
|
7
22
|
### Bug Fixes
|
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
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/meta.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"inputs": {
|
|
3
|
+
"packages/prettier/src/index.ts": {
|
|
4
|
+
"bytes": 1623,
|
|
5
|
+
"imports": [],
|
|
6
|
+
"format": "cjs"
|
|
7
|
+
}
|
|
8
|
+
},
|
|
9
|
+
"outputs": {
|
|
10
|
+
"dist/packages/prettier/index.cjs": {
|
|
11
|
+
"imports": [],
|
|
12
|
+
"exports": [],
|
|
13
|
+
"entryPoint": "packages/prettier/src/index.ts",
|
|
14
|
+
"inputs": {
|
|
15
|
+
"packages/prettier/src/index.ts": {
|
|
16
|
+
"bytesInOutput": 1623
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"bytes": 1657
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/prettier",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.49.0",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"description": "⚡ A package containing the base Prettier configuration used by Storm Software across many projects.",
|
|
6
6
|
"repository": {
|
|
@@ -50,33 +50,15 @@
|
|
|
50
50
|
"prettier-plugin-toml": "^2.0.4"
|
|
51
51
|
},
|
|
52
52
|
"peerDependenciesMeta": {
|
|
53
|
-
"prettier": {
|
|
54
|
-
|
|
55
|
-
},
|
|
56
|
-
"prettier-plugin-
|
|
57
|
-
|
|
58
|
-
},
|
|
59
|
-
"prettier-plugin-
|
|
60
|
-
|
|
61
|
-
}
|
|
62
|
-
"prettier-plugin-pkg": {
|
|
63
|
-
"optional": false
|
|
64
|
-
},
|
|
65
|
-
"prettier-plugin-prisma": {
|
|
66
|
-
"optional": false
|
|
67
|
-
},
|
|
68
|
-
"prettier-plugin-sh": {
|
|
69
|
-
"optional": false
|
|
70
|
-
},
|
|
71
|
-
"prettier-plugin-solidity": {
|
|
72
|
-
"optional": true
|
|
73
|
-
},
|
|
74
|
-
"prettier-plugin-tailwindcss": {
|
|
75
|
-
"optional": true
|
|
76
|
-
},
|
|
77
|
-
"prettier-plugin-toml": {
|
|
78
|
-
"optional": false
|
|
79
|
-
}
|
|
53
|
+
"prettier": { "optional": false },
|
|
54
|
+
"prettier-plugin-astro": { "optional": true },
|
|
55
|
+
"prettier-plugin-organize-imports": { "optional": false },
|
|
56
|
+
"prettier-plugin-pkg": { "optional": false },
|
|
57
|
+
"prettier-plugin-prisma": { "optional": false },
|
|
58
|
+
"prettier-plugin-sh": { "optional": false },
|
|
59
|
+
"prettier-plugin-solidity": { "optional": true },
|
|
60
|
+
"prettier-plugin-tailwindcss": { "optional": true },
|
|
61
|
+
"prettier-plugin-toml": { "optional": false }
|
|
80
62
|
},
|
|
81
63
|
"dependencies": {
|
|
82
64
|
"prettier-plugin-jsdoc": "^1.3.2",
|
|
@@ -93,7 +75,5 @@
|
|
|
93
75
|
"prettier-plugin-solidity": "^1.4.3",
|
|
94
76
|
"prettier-plugin-tailwindcss": "^0.6.11"
|
|
95
77
|
},
|
|
96
|
-
"publishConfig": {
|
|
97
|
-
|
|
98
|
-
}
|
|
99
|
-
}
|
|
78
|
+
"publishConfig": { "access": "public" }
|
|
79
|
+
}
|
package/project.json
DELETED
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "prettier",
|
|
3
|
-
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
4
|
-
"sourceRoot": "packages/prettier/src",
|
|
5
|
-
"projectType": "library",
|
|
6
|
-
"targets": {
|
|
7
|
-
"build": {
|
|
8
|
-
"cache": true,
|
|
9
|
-
"executor": "@nx/esbuild:esbuild",
|
|
10
|
-
"outputs": ["{options.outputPath}"],
|
|
11
|
-
"options": {
|
|
12
|
-
"outputPath": "dist/packages/prettier",
|
|
13
|
-
"tsConfig": "packages/prettier/tsconfig.json",
|
|
14
|
-
"project": "packages/prettier/package.json",
|
|
15
|
-
"main": "packages/prettier/src/index.ts",
|
|
16
|
-
"format": ["cjs"],
|
|
17
|
-
"platform": "node",
|
|
18
|
-
"deleteOutputPath": true,
|
|
19
|
-
"bundle": true,
|
|
20
|
-
"thirdParty": true,
|
|
21
|
-
"skipTypeCheck": false,
|
|
22
|
-
"metafile": true,
|
|
23
|
-
"minify": false,
|
|
24
|
-
"assets": [
|
|
25
|
-
{
|
|
26
|
-
"input": "./packages/prettier",
|
|
27
|
-
"glob": "*.md",
|
|
28
|
-
"output": "/"
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"input": "",
|
|
32
|
-
"glob": "LICENSE",
|
|
33
|
-
"output": "/"
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"input": "./packages/prettier/src",
|
|
37
|
-
"glob": "{*.json,.prettierignore}",
|
|
38
|
-
"output": "."
|
|
39
|
-
}
|
|
40
|
-
]
|
|
41
|
-
}
|
|
42
|
-
},
|
|
43
|
-
"nx-release-publish": {
|
|
44
|
-
"executor": "@storm-software/workspace-tools:npm-publish"
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
}
|
package/tsconfig.json
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|