@storm-software/workspace-tools 1.282.0 → 1.282.1
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,24 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Workspace Tools
|
|
4
4
|
|
|
5
|
+
## [1.282.0](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.282.0) (2025-09-06)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- **git-tools:** Update `commit` and `commitlint` to support custom config
|
|
10
|
+
([ef331c1c3](https://github.com/storm-software/storm-ops/commit/ef331c1c3))
|
|
11
|
+
|
|
12
|
+
### Miscellaneous
|
|
13
|
+
|
|
14
|
+
- **monorepo:** Update workspace package links
|
|
15
|
+
([0ecd5b833](https://github.com/storm-software/storm-ops/commit/0ecd5b833))
|
|
16
|
+
|
|
17
|
+
### Updated Dependencies
|
|
18
|
+
|
|
19
|
+
- Updated prettier to 0.53.14
|
|
20
|
+
- Updated esbuild to 0.47.17
|
|
21
|
+
- Updated unbuild to 0.51.17
|
|
22
|
+
|
|
5
23
|
## [1.281.16](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.281.16) (2025-09-06)
|
|
6
24
|
|
|
7
25
|
### 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
|
-
[](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 -->
|
|
@@ -90,12 +90,12 @@ var createNodesV2 = [
|
|
|
90
90
|
};
|
|
91
91
|
}
|
|
92
92
|
if (enableTypeCheck) {
|
|
93
|
-
targets["lint
|
|
93
|
+
targets["lint-tsc"] ??= {
|
|
94
94
|
cache: true,
|
|
95
95
|
inputs: ["typescript", "^production"],
|
|
96
96
|
outputs: ["{workspaceRoot}/dist/{projectRoot}"],
|
|
97
97
|
executor: "nx:run-commands",
|
|
98
|
-
dependsOn: ["^lint
|
|
98
|
+
dependsOn: ["^lint-tsc"],
|
|
99
99
|
options: {
|
|
100
100
|
command: `pnpm exec tsc --noEmit --pretty --project ${_path.join.call(void 0,
|
|
101
101
|
projectConfig.root,
|
|
@@ -118,7 +118,7 @@ var createNodesV2 = [
|
|
|
118
118
|
],
|
|
119
119
|
dependsOn: [
|
|
120
120
|
enableMarkdownlint ? "lint-markdown" : void 0,
|
|
121
|
-
enableTypeCheck ? "lint
|
|
121
|
+
enableTypeCheck ? "lint-tsc" : void 0,
|
|
122
122
|
"^lint"
|
|
123
123
|
].filter(Boolean),
|
|
124
124
|
executor: "@nx/eslint:lint",
|
|
@@ -91,12 +91,12 @@ var createNodesV2 = [
|
|
|
91
91
|
};
|
|
92
92
|
}
|
|
93
93
|
if (enableTypeCheck) {
|
|
94
|
-
targets["lint
|
|
94
|
+
targets["lint-tsc"] ??= {
|
|
95
95
|
cache: true,
|
|
96
96
|
inputs: ["typescript", "^production"],
|
|
97
97
|
outputs: ["{workspaceRoot}/dist/{projectRoot}"],
|
|
98
98
|
executor: "nx:run-commands",
|
|
99
|
-
dependsOn: ["^lint
|
|
99
|
+
dependsOn: ["^lint-tsc"],
|
|
100
100
|
options: {
|
|
101
101
|
command: `pnpm exec tsc --noEmit --pretty --project ${join(
|
|
102
102
|
projectConfig.root,
|
|
@@ -119,7 +119,7 @@ var createNodesV2 = [
|
|
|
119
119
|
],
|
|
120
120
|
dependsOn: [
|
|
121
121
|
enableMarkdownlint ? "lint-markdown" : void 0,
|
|
122
|
-
enableTypeCheck ? "lint
|
|
122
|
+
enableTypeCheck ? "lint-tsc" : void 0,
|
|
123
123
|
"^lint"
|
|
124
124
|
].filter(Boolean),
|
|
125
125
|
executor: "@nx/eslint:lint",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/workspace-tools",
|
|
3
|
-
"version": "1.282.
|
|
3
|
+
"version": "1.282.1",
|
|
4
4
|
"description": "Tools for managing a Storm workspace, including various Nx generators and executors for common development tasks.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|
|
@@ -208,9 +208,9 @@
|
|
|
208
208
|
"@size-limit/esbuild": "11.1.4",
|
|
209
209
|
"@size-limit/esbuild-why": "11.1.4",
|
|
210
210
|
"@size-limit/file": "11.1.4",
|
|
211
|
-
"@storm-software/esbuild": "^0.47.
|
|
211
|
+
"@storm-software/esbuild": "^0.47.18",
|
|
212
212
|
"@storm-software/prettier": "^0.53.14",
|
|
213
|
-
"@storm-software/unbuild": "^0.51.
|
|
213
|
+
"@storm-software/unbuild": "^0.51.18",
|
|
214
214
|
"fs-extra": "11.2.0",
|
|
215
215
|
"glob": "^11.0.1",
|
|
216
216
|
"jiti": "^2.4.2",
|
|
@@ -238,5 +238,5 @@
|
|
|
238
238
|
"publishConfig": { "access": "public" },
|
|
239
239
|
"executors": "./executors.json",
|
|
240
240
|
"generators": "./generators.json",
|
|
241
|
-
"gitHead": "
|
|
241
|
+
"gitHead": "658730b4c2e45539c2c7e8a27a7de490a0313325"
|
|
242
242
|
}
|