@storm-software/workspace-tools 1.250.3 → 1.250.5

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
@@ -1,3 +1,15 @@
1
+ ## 1.250.5 (2025-02-05)
2
+
3
+ ### Miscellaneous
4
+
5
+ - **monorepo:** Regenerate README markdown files ([de6ae2b84](https://github.com/storm-software/storm-ops/commit/de6ae2b84))
6
+
7
+ ## 1.250.4 (2025-02-05)
8
+
9
+ ### Bug Fixes
10
+
11
+ - **markdownlint:** Resolved issues with the file globs in configurations ([0384a5bbe](https://github.com/storm-software/storm-ops/commit/0384a5bbe))
12
+
1
13
  ## 1.250.3 (2025-02-05)
2
14
 
3
15
  ### 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-1.250.2-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-1.250.5-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/config/base.json CHANGED
@@ -323,9 +323,7 @@
323
323
  }
324
324
  },
325
325
  "lint": {
326
- "inputs": ["linting", "default", "^production"],
327
- "outputs": ["{projectRoot}"],
328
- "dependsOn": ["lint-markdown", "lint-docs", "^lint"],
326
+ "dependsOn": ["lint-markdown", "^lint"],
329
327
  "executor": "nx:run-commands",
330
328
  "options": {
331
329
  "command": "echo Linted the project files in \"{projectRoot}\" "
@@ -337,7 +335,7 @@
337
335
  "dependsOn": ["^format-toml"],
338
336
  "executor": "nx:run-commands",
339
337
  "options": {
340
- "command": "pnpm exec taplo format --colors=\"always\" --config=\"./node_modules/@storm-software/linting-tools/taplo/config.toml\" --cache-path=\"./tmp/taplo/{projectRoot}\""
338
+ "command": "pnpm exec taplo format --config=\"node_modules/@storm-software/linting-tools/taplo/config.toml\" --cache-path=\"node_modules/.cache/taplo/{projectRoot}\" --colors=\"always\" \"{projectRoot}/*.toml\" \"{projectRoot}/**/*.toml\" "
341
339
  }
342
340
  },
343
341
  "format-readme": {
@@ -352,7 +350,7 @@
352
350
  "dependsOn": ["^format-readme"],
353
351
  "executor": "nx:run-commands",
354
352
  "options": {
355
- "command": "pnpm exec storm-git readme-gen --templates=\"./tools/readme-templates\" --project=\"{projectName}\""
353
+ "command": "pnpm exec storm-git readme-gen --templates=\"tools/readme-templates\" --project=\"{projectName}\""
356
354
  }
357
355
  },
358
356
  "format-prettier": {
@@ -360,18 +358,19 @@
360
358
  "dependsOn": ["^format-prettier"],
361
359
  "executor": "nx:run-commands",
362
360
  "options": {
363
- "command": "pnpm exec prettier \"{projectRoot}/**/*\" --write --ignore-unknown --no-error-on-unmatched-pattern --config=\"./node_modules/@storm-software/prettier/config.json\" --ignore-path=\"./node_modules/@storm-software/prettier/.prettierignore\" --cache --cache-location=\"./tmp/prettier/{projectRoot}\" "
361
+ "command": "pnpm exec prettier \"{projectRoot}/**/*\" --write --ignore-unknown --no-error-on-unmatched-pattern --config=\"node_modules/@storm-software/prettier/config.json\" --ignore-path=\"node_modules/@storm-software/prettier/.prettierignore\" --cache --cache-location=\"node_modules/.cache/prettier/{projectRoot}\" "
364
362
  }
365
363
  },
366
364
  "format": {
367
- "inputs": ["linting", "default", "^production"],
368
- "outputs": ["{projectRoot}"],
369
365
  "dependsOn": [
370
366
  "format-toml",
371
367
  "format-readme",
372
368
  "format-prettier",
373
369
  "^format"
374
- ]
370
+ ],
371
+ "options": {
372
+ "command": "echo Formatted the project files in \"{projectRoot}\" "
373
+ }
375
374
  },
376
375
  "clean": {
377
376
  "inputs": ["default", "^production"],
@@ -38,6 +38,27 @@ var createNodes = [
38
38
  }
39
39
  const nxJson = readNxJson(ctx.workspaceRoot);
40
40
  const targets = readTargetsFromPackageJson(packageJson, nxJson);
41
+ if (!targets["lint-knip"]) {
42
+ targets["lint-knip"] = {
43
+ cache: true,
44
+ outputs: [
45
+ "{projectRoot}/**/*.md",
46
+ "{projectRoot}/**/*.mdx"
47
+ ],
48
+ inputs: [
49
+ "linting",
50
+ "{projectRoot}/**/*.md",
51
+ "{projectRoot}/**/*.mdx"
52
+ ],
53
+ dependsOn: [
54
+ "^lint-knip"
55
+ ],
56
+ executor: "nx:run-commands",
57
+ options: {
58
+ command: 'pnpm exec knip --directory --fix --cache --cache-location="node_modules/.cache/knip/{projectRoot}"'
59
+ }
60
+ };
61
+ }
41
62
  if (!targets["lint-markdown"]) {
42
63
  targets["lint-markdown"] = {
43
64
  cache: true,
@@ -72,8 +93,12 @@ var createNodes = [
72
93
  "typescript",
73
94
  "^production"
74
95
  ],
96
+ outputs: [
97
+ "{projectRoot}/**/*.{ts,tsx,js,jsx,json,md,mdx,yaml,yml,html,css,scss,sass,less,graphql,gql,}"
98
+ ],
75
99
  dependsOn: [
76
100
  "lint-markdown",
101
+ "lint-knip",
77
102
  "^lint"
78
103
  ],
79
104
  executor: "@nx/eslint:lint",
@@ -82,60 +107,14 @@ var createNodes = [
82
107
  fix: true,
83
108
  errorOnUnmatchedPattern: false,
84
109
  cache: true,
85
- cacheLocation: "{workspaceRoot}/node_modules/.cache/eslint",
110
+ cacheLocation: "{workspaceRoot}/node_modules/.cache/eslint/{projectRoot}",
86
111
  eslintConfig
87
112
  }
88
113
  };
89
114
  }
90
115
  }
91
- if (!targets["format-readme"]) {
92
- targets["format-readme"] = {
93
- cache: true,
94
- inputs: [
95
- "linting",
96
- "documentation",
97
- "typescript",
98
- "^production"
99
- ],
100
- dependsOn: [
101
- "^format-readme"
102
- ]
103
- };
104
- }
105
- if (!targets["format-toml"]) {
106
- targets["format-toml"] = {
107
- cache: true,
108
- inputs: [
109
- "linting",
110
- "typescript",
111
- "^production"
112
- ],
113
- dependsOn: [
114
- "^format-toml"
115
- ]
116
- };
117
- }
118
- if (!targets["format-prettier"]) {
119
- targets["format-prettier"] = {
120
- cache: true,
121
- inputs: [
122
- "linting",
123
- "typescript",
124
- "^production"
125
- ],
126
- dependsOn: [
127
- "^format-prettier"
128
- ]
129
- };
130
- }
131
116
  if (!targets.format) {
132
117
  targets.format = {
133
- cache: true,
134
- inputs: [
135
- "linting",
136
- "typescript",
137
- "^production"
138
- ],
139
118
  dependsOn: [
140
119
  "format-readme",
141
120
  "format-toml",
@@ -144,8 +123,7 @@ var createNodes = [
144
123
  ],
145
124
  executor: "nx:run-commands",
146
125
  options: {
147
- command: `echo 'Formatting the project files in "{projectRoot}"' `,
148
- color: true
126
+ command: `echo 'Formatting the project files in "{projectRoot}"' `
149
127
  }
150
128
  };
151
129
  }
@@ -177,19 +155,18 @@ var createNodes = [
177
155
  ],
178
156
  inputs: [
179
157
  "typescript",
158
+ "default",
180
159
  "^production"
181
160
  ],
182
161
  outputs: [
183
162
  "{workspaceRoot}/dist/{projectRoot}"
184
163
  ],
185
164
  options: {
186
- command: `pnpm exec nx run ${project.name}:build`,
187
- color: true,
188
- cwd: "{workspaceRoot}"
165
+ command: `pnpm exec nx run ${project.name}:build`
189
166
  }
190
167
  };
191
168
  }
192
- if (!targets.test) {
169
+ if (!targets.test && checkJestConfigAtPath(project.root)) {
193
170
  targets.test = {
194
171
  cache: true,
195
172
  executor: "@nx/jest:jest",
@@ -201,17 +178,17 @@ var createNodes = [
201
178
  outputs: [
202
179
  "{workspaceRoot}/coverage/{projectRoot}"
203
180
  ],
204
- defaultConfiguration: "local",
181
+ defaultConfiguration: "development",
205
182
  options: {
206
183
  jestConfig: "{projectRoot}/jest.config.ts",
207
184
  passWithNoTests: true
208
185
  },
209
186
  configurations: {
210
- local: {
187
+ development: {
211
188
  ci: false,
212
189
  codeCoverage: true
213
190
  },
214
- ci: {
191
+ production: {
215
192
  ci: true,
216
193
  codeCoverage: true
217
194
  }
@@ -219,11 +196,6 @@ var createNodes = [
219
196
  };
220
197
  }
221
198
  targets["size-limit"] = {
222
- cache: true,
223
- inputs: [
224
- "typescript",
225
- "^production"
226
- ],
227
199
  dependsOn: [
228
200
  "build",
229
201
  "^size-limit"
@@ -236,14 +208,6 @@ var createNodes = [
236
208
  overwrite: true
237
209
  });
238
210
  targets["nx-release-publish"] = {
239
- cache: true,
240
- inputs: [
241
- "linting",
242
- "testing",
243
- "documentation",
244
- "default",
245
- "^production"
246
- ],
247
211
  dependsOn: [
248
212
  "build",
249
213
  "size-limit",
@@ -385,10 +349,34 @@ function checkEslintConfigAtPath(directory) {
385
349
  return "eslint.config.mjs";
386
350
  } else if (hasEslintConfigFile("eslint.config.ts")) {
387
351
  return "eslint.config.ts";
352
+ } else if (hasEslintConfigFile("eslint.config.cts")) {
353
+ return "eslint.config.cts";
354
+ } else if (hasEslintConfigFile("eslint.config.mts")) {
355
+ return "eslint.config.mts";
388
356
  }
389
357
  return null;
390
358
  }
391
359
  __name(checkEslintConfigAtPath, "checkEslintConfigAtPath");
360
+ function checkJestConfigAtPath(directory) {
361
+ const hasJestConfigFile = /* @__PURE__ */ __name((fileName) => {
362
+ return existsSync(join(directory, fileName));
363
+ }, "hasJestConfigFile");
364
+ if (hasJestConfigFile("eslint.config.js")) {
365
+ return "jest.config.js";
366
+ } else if (hasJestConfigFile("eslint.config.cjs")) {
367
+ return "jest.config.cjs";
368
+ } else if (hasJestConfigFile("eslint.config.mjs")) {
369
+ return "jest.config.mjs";
370
+ } else if (hasJestConfigFile("eslint.config.ts")) {
371
+ return "jest.config.ts";
372
+ } else if (hasJestConfigFile("jest.config.cts")) {
373
+ return "jest.config.cts";
374
+ } else if (hasJestConfigFile("jest.config.mts")) {
375
+ return "jest.config.mts";
376
+ }
377
+ return null;
378
+ }
379
+ __name(checkJestConfigAtPath, "checkJestConfigAtPath");
392
380
 
393
381
  export {
394
382
  name,
@@ -38,6 +38,27 @@ var createNodes = [
38
38
  }
39
39
  const nxJson = _nxjsonjs.readNxJson.call(void 0, ctx.workspaceRoot);
40
40
  const targets = _packagejson.readTargetsFromPackageJson.call(void 0, packageJson, nxJson);
41
+ if (!targets["lint-knip"]) {
42
+ targets["lint-knip"] = {
43
+ cache: true,
44
+ outputs: [
45
+ "{projectRoot}/**/*.md",
46
+ "{projectRoot}/**/*.mdx"
47
+ ],
48
+ inputs: [
49
+ "linting",
50
+ "{projectRoot}/**/*.md",
51
+ "{projectRoot}/**/*.mdx"
52
+ ],
53
+ dependsOn: [
54
+ "^lint-knip"
55
+ ],
56
+ executor: "nx:run-commands",
57
+ options: {
58
+ command: 'pnpm exec knip --directory --fix --cache --cache-location="node_modules/.cache/knip/{projectRoot}"'
59
+ }
60
+ };
61
+ }
41
62
  if (!targets["lint-markdown"]) {
42
63
  targets["lint-markdown"] = {
43
64
  cache: true,
@@ -72,8 +93,12 @@ var createNodes = [
72
93
  "typescript",
73
94
  "^production"
74
95
  ],
96
+ outputs: [
97
+ "{projectRoot}/**/*.{ts,tsx,js,jsx,json,md,mdx,yaml,yml,html,css,scss,sass,less,graphql,gql,}"
98
+ ],
75
99
  dependsOn: [
76
100
  "lint-markdown",
101
+ "lint-knip",
77
102
  "^lint"
78
103
  ],
79
104
  executor: "@nx/eslint:lint",
@@ -82,60 +107,14 @@ var createNodes = [
82
107
  fix: true,
83
108
  errorOnUnmatchedPattern: false,
84
109
  cache: true,
85
- cacheLocation: "{workspaceRoot}/node_modules/.cache/eslint",
110
+ cacheLocation: "{workspaceRoot}/node_modules/.cache/eslint/{projectRoot}",
86
111
  eslintConfig
87
112
  }
88
113
  };
89
114
  }
90
115
  }
91
- if (!targets["format-readme"]) {
92
- targets["format-readme"] = {
93
- cache: true,
94
- inputs: [
95
- "linting",
96
- "documentation",
97
- "typescript",
98
- "^production"
99
- ],
100
- dependsOn: [
101
- "^format-readme"
102
- ]
103
- };
104
- }
105
- if (!targets["format-toml"]) {
106
- targets["format-toml"] = {
107
- cache: true,
108
- inputs: [
109
- "linting",
110
- "typescript",
111
- "^production"
112
- ],
113
- dependsOn: [
114
- "^format-toml"
115
- ]
116
- };
117
- }
118
- if (!targets["format-prettier"]) {
119
- targets["format-prettier"] = {
120
- cache: true,
121
- inputs: [
122
- "linting",
123
- "typescript",
124
- "^production"
125
- ],
126
- dependsOn: [
127
- "^format-prettier"
128
- ]
129
- };
130
- }
131
116
  if (!targets.format) {
132
117
  targets.format = {
133
- cache: true,
134
- inputs: [
135
- "linting",
136
- "typescript",
137
- "^production"
138
- ],
139
118
  dependsOn: [
140
119
  "format-readme",
141
120
  "format-toml",
@@ -144,8 +123,7 @@ var createNodes = [
144
123
  ],
145
124
  executor: "nx:run-commands",
146
125
  options: {
147
- command: `echo 'Formatting the project files in "{projectRoot}"' `,
148
- color: true
126
+ command: `echo 'Formatting the project files in "{projectRoot}"' `
149
127
  }
150
128
  };
151
129
  }
@@ -177,19 +155,18 @@ var createNodes = [
177
155
  ],
178
156
  inputs: [
179
157
  "typescript",
158
+ "default",
180
159
  "^production"
181
160
  ],
182
161
  outputs: [
183
162
  "{workspaceRoot}/dist/{projectRoot}"
184
163
  ],
185
164
  options: {
186
- command: `pnpm exec nx run ${project.name}:build`,
187
- color: true,
188
- cwd: "{workspaceRoot}"
165
+ command: `pnpm exec nx run ${project.name}:build`
189
166
  }
190
167
  };
191
168
  }
192
- if (!targets.test) {
169
+ if (!targets.test && checkJestConfigAtPath(project.root)) {
193
170
  targets.test = {
194
171
  cache: true,
195
172
  executor: "@nx/jest:jest",
@@ -201,17 +178,17 @@ var createNodes = [
201
178
  outputs: [
202
179
  "{workspaceRoot}/coverage/{projectRoot}"
203
180
  ],
204
- defaultConfiguration: "local",
181
+ defaultConfiguration: "development",
205
182
  options: {
206
183
  jestConfig: "{projectRoot}/jest.config.ts",
207
184
  passWithNoTests: true
208
185
  },
209
186
  configurations: {
210
- local: {
187
+ development: {
211
188
  ci: false,
212
189
  codeCoverage: true
213
190
  },
214
- ci: {
191
+ production: {
215
192
  ci: true,
216
193
  codeCoverage: true
217
194
  }
@@ -219,11 +196,6 @@ var createNodes = [
219
196
  };
220
197
  }
221
198
  targets["size-limit"] = {
222
- cache: true,
223
- inputs: [
224
- "typescript",
225
- "^production"
226
- ],
227
199
  dependsOn: [
228
200
  "build",
229
201
  "^size-limit"
@@ -236,14 +208,6 @@ var createNodes = [
236
208
  overwrite: true
237
209
  });
238
210
  targets["nx-release-publish"] = {
239
- cache: true,
240
- inputs: [
241
- "linting",
242
- "testing",
243
- "documentation",
244
- "default",
245
- "^production"
246
- ],
247
211
  dependsOn: [
248
212
  "build",
249
213
  "size-limit",
@@ -385,10 +349,34 @@ function checkEslintConfigAtPath(directory) {
385
349
  return "eslint.config.mjs";
386
350
  } else if (hasEslintConfigFile("eslint.config.ts")) {
387
351
  return "eslint.config.ts";
352
+ } else if (hasEslintConfigFile("eslint.config.cts")) {
353
+ return "eslint.config.cts";
354
+ } else if (hasEslintConfigFile("eslint.config.mts")) {
355
+ return "eslint.config.mts";
388
356
  }
389
357
  return null;
390
358
  }
391
359
  _chunk3GQAWCBQjs.__name.call(void 0, checkEslintConfigAtPath, "checkEslintConfigAtPath");
360
+ function checkJestConfigAtPath(directory) {
361
+ const hasJestConfigFile = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (fileName) => {
362
+ return _fs.existsSync.call(void 0, _path.join.call(void 0, directory, fileName));
363
+ }, "hasJestConfigFile");
364
+ if (hasJestConfigFile("eslint.config.js")) {
365
+ return "jest.config.js";
366
+ } else if (hasJestConfigFile("eslint.config.cjs")) {
367
+ return "jest.config.cjs";
368
+ } else if (hasJestConfigFile("eslint.config.mjs")) {
369
+ return "jest.config.mjs";
370
+ } else if (hasJestConfigFile("eslint.config.ts")) {
371
+ return "jest.config.ts";
372
+ } else if (hasJestConfigFile("jest.config.cts")) {
373
+ return "jest.config.cts";
374
+ } else if (hasJestConfigFile("jest.config.mts")) {
375
+ return "jest.config.mts";
376
+ }
377
+ return null;
378
+ }
379
+ _chunk3GQAWCBQjs.__name.call(void 0, checkJestConfigAtPath, "checkJestConfigAtPath");
392
380
 
393
381
 
394
382
 
package/dist/executors.js CHANGED
@@ -1,16 +1,22 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-3J53KHVV.js');
2
2
 
3
3
 
4
+ var _chunkWGTIKGAEjs = require('./chunk-WGTIKGAE.js');
5
+
6
+
4
7
  var _chunkNXGJNB3Cjs = require('./chunk-NXGJNB3C.js');
5
8
 
6
9
 
10
+ var _chunkCQAGLRNYjs = require('./chunk-CQAGLRNY.js');
11
+
12
+
7
13
  var _chunkFMOIAVZVjs = require('./chunk-FMOIAVZV.js');
8
14
 
9
15
 
10
16
  var _chunkJXSTSZSGjs = require('./chunk-JXSTSZSG.js');
11
17
 
12
18
 
13
- var _chunkWGTIKGAEjs = require('./chunk-WGTIKGAE.js');
19
+ var _chunk5O6RWCBQjs = require('./chunk-5O6RWCBQ.js');
14
20
 
15
21
 
16
22
  var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
@@ -20,7 +26,7 @@ var _chunkWL7UV3YXjs = require('./chunk-WL7UV3YX.js');
20
26
  require('./chunk-R2NBU264.js');
21
27
 
22
28
 
23
- var _chunkCQAGLRNYjs = require('./chunk-CQAGLRNY.js');
29
+ var _chunkK434EGC4js = require('./chunk-K434EGC4.js');
24
30
 
25
31
 
26
32
  var _chunk4AMZUCHLjs = require('./chunk-4AMZUCHL.js');
@@ -30,12 +36,6 @@ var _chunkG7HTMCQKjs = require('./chunk-G7HTMCQK.js');
30
36
 
31
37
 
32
38
  var _chunk4SJW3KRVjs = require('./chunk-4SJW3KRV.js');
33
-
34
-
35
- var _chunk5O6RWCBQjs = require('./chunk-5O6RWCBQ.js');
36
-
37
-
38
- var _chunkK434EGC4js = require('./chunk-K434EGC4.js');
39
39
  require('./chunk-CUPARBOS.js');
40
40
  require('./chunk-ULBTYC2B.js');
41
41
  require('./chunk-ZMFVKBRM.js');
@@ -1,7 +1,13 @@
1
1
  import "./chunk-V7YZ3666.mjs";
2
+ import {
3
+ unbuildExecutorFn
4
+ } from "./chunk-7H4PXXWW.mjs";
2
5
  import {
3
6
  sizeLimitExecutorFn
4
7
  } from "./chunk-KM47X5XW.mjs";
8
+ import {
9
+ LARGE_BUFFER
10
+ } from "./chunk-VBPOZVKY.mjs";
5
11
  import {
6
12
  tsdownExecutorFn
7
13
  } from "./chunk-UF3YMASN.mjs";
@@ -9,8 +15,8 @@ import {
9
15
  typiaExecutorFn
10
16
  } from "./chunk-2KNHEXJQ.mjs";
11
17
  import {
12
- unbuildExecutorFn
13
- } from "./chunk-7H4PXXWW.mjs";
18
+ cargoFormatExecutor
19
+ } from "./chunk-YILBFUCI.mjs";
14
20
  import {
15
21
  getRegistryVersion
16
22
  } from "./chunk-XUYTELRS.mjs";
@@ -19,8 +25,8 @@ import {
19
25
  } from "./chunk-OA6GD45B.mjs";
20
26
  import "./chunk-N2P34ZQV.mjs";
21
27
  import {
22
- LARGE_BUFFER
23
- } from "./chunk-VBPOZVKY.mjs";
28
+ cargoBuildExecutor
29
+ } from "./chunk-RSFH5OLL.mjs";
24
30
  import {
25
31
  cargoCheckExecutor
26
32
  } from "./chunk-P4ZEGEQX.mjs";
@@ -30,12 +36,6 @@ import {
30
36
  import {
31
37
  cargoDocExecutor
32
38
  } from "./chunk-7AXJ27FU.mjs";
33
- import {
34
- cargoFormatExecutor
35
- } from "./chunk-YILBFUCI.mjs";
36
- import {
37
- cargoBuildExecutor
38
- } from "./chunk-RSFH5OLL.mjs";
39
39
  import "./chunk-JB4KCMSB.mjs";
40
40
  import "./chunk-XK3FSWMA.mjs";
41
41
  import "./chunk-EIM3O6HY.mjs";
@@ -4,6 +4,9 @@
4
4
  var _chunkSJNJ6TCDjs = require('./chunk-SJNJ6TCD.js');
5
5
 
6
6
 
7
+ var _chunkWDK2FJUHjs = require('./chunk-WDK2FJUH.js');
8
+
9
+
7
10
  var _chunkDCJXS5XIjs = require('./chunk-DCJXS5XI.js');
8
11
 
9
12
 
@@ -13,13 +16,10 @@ var _chunkYDV7OQMNjs = require('./chunk-YDV7OQMN.js');
13
16
  var _chunkQKALACBCjs = require('./chunk-QKALACBC.js');
14
17
 
15
18
 
16
- var _chunkKJPUYQEZjs = require('./chunk-KJPUYQEZ.js');
17
-
18
-
19
19
  var _chunk3IZ3O4OKjs = require('./chunk-3IZ3O4OK.js');
20
20
 
21
21
 
22
- var _chunkWDK2FJUHjs = require('./chunk-WDK2FJUH.js');
22
+ var _chunkKJPUYQEZjs = require('./chunk-KJPUYQEZ.js');
23
23
  require('./chunk-RBU35LQW.js');
24
24
  require('./chunk-HI4G4OOG.js');
25
25
  require('./chunk-7YRW5HNX.js');
@@ -2,6 +2,9 @@ import "./chunk-RLIZVCIN.mjs";
2
2
  import {
3
3
  neutralLibraryGeneratorFn
4
4
  } from "./chunk-APSDUSBR.mjs";
5
+ import {
6
+ nodeLibraryGeneratorFn
7
+ } from "./chunk-Q6OBRMZG.mjs";
5
8
  import {
6
9
  presetGeneratorFn
7
10
  } from "./chunk-QDZUYDVM.mjs";
@@ -11,15 +14,12 @@ import {
11
14
  import {
12
15
  browserLibraryGeneratorFn
13
16
  } from "./chunk-7GW75RON.mjs";
14
- import {
15
- configSchemaGeneratorFn
16
- } from "./chunk-S73S6XCY.mjs";
17
17
  import {
18
18
  initGenerator
19
19
  } from "./chunk-X3GPVZMH.mjs";
20
20
  import {
21
- nodeLibraryGeneratorFn
22
- } from "./chunk-Q6OBRMZG.mjs";
21
+ configSchemaGeneratorFn
22
+ } from "./chunk-S73S6XCY.mjs";
23
23
  import "./chunk-F2GYXQ5H.mjs";
24
24
  import "./chunk-EK75QNMS.mjs";
25
25
  import "./chunk-W3SWWT4A.mjs";
package/dist/index.js CHANGED
@@ -48,16 +48,22 @@ var _chunkGKL4BY2Yjs = require('./chunk-GKL4BY2Y.js');
48
48
  require('./chunk-3J53KHVV.js');
49
49
 
50
50
 
51
+ var _chunkWGTIKGAEjs = require('./chunk-WGTIKGAE.js');
52
+
53
+
51
54
  var _chunkNXGJNB3Cjs = require('./chunk-NXGJNB3C.js');
52
55
 
53
56
 
57
+ var _chunkCQAGLRNYjs = require('./chunk-CQAGLRNY.js');
58
+
59
+
54
60
  var _chunkFMOIAVZVjs = require('./chunk-FMOIAVZV.js');
55
61
 
56
62
 
57
63
  var _chunkJXSTSZSGjs = require('./chunk-JXSTSZSG.js');
58
64
 
59
65
 
60
- var _chunkWGTIKGAEjs = require('./chunk-WGTIKGAE.js');
66
+ var _chunk5O6RWCBQjs = require('./chunk-5O6RWCBQ.js');
61
67
 
62
68
 
63
69
  var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
@@ -67,7 +73,7 @@ var _chunkWL7UV3YXjs = require('./chunk-WL7UV3YX.js');
67
73
  require('./chunk-R2NBU264.js');
68
74
 
69
75
 
70
- var _chunkCQAGLRNYjs = require('./chunk-CQAGLRNY.js');
76
+ var _chunkK434EGC4js = require('./chunk-K434EGC4.js');
71
77
 
72
78
 
73
79
  var _chunk4AMZUCHLjs = require('./chunk-4AMZUCHL.js');
@@ -79,12 +85,6 @@ var _chunkG7HTMCQKjs = require('./chunk-G7HTMCQK.js');
79
85
  var _chunk4SJW3KRVjs = require('./chunk-4SJW3KRV.js');
80
86
 
81
87
 
82
- var _chunk5O6RWCBQjs = require('./chunk-5O6RWCBQ.js');
83
-
84
-
85
- var _chunkK434EGC4js = require('./chunk-K434EGC4.js');
86
-
87
-
88
88
  var _chunkCUPARBOSjs = require('./chunk-CUPARBOS.js');
89
89
 
90
90
 
@@ -103,6 +103,9 @@ require('./chunk-INERRJ6Q.js');
103
103
  var _chunkSJNJ6TCDjs = require('./chunk-SJNJ6TCD.js');
104
104
 
105
105
 
106
+ var _chunkWDK2FJUHjs = require('./chunk-WDK2FJUH.js');
107
+
108
+
106
109
  var _chunkDCJXS5XIjs = require('./chunk-DCJXS5XI.js');
107
110
 
108
111
 
@@ -112,13 +115,10 @@ var _chunkYDV7OQMNjs = require('./chunk-YDV7OQMN.js');
112
115
  var _chunkQKALACBCjs = require('./chunk-QKALACBC.js');
113
116
 
114
117
 
115
- var _chunkKJPUYQEZjs = require('./chunk-KJPUYQEZ.js');
116
-
117
-
118
118
  var _chunk3IZ3O4OKjs = require('./chunk-3IZ3O4OK.js');
119
119
 
120
120
 
121
- var _chunkWDK2FJUHjs = require('./chunk-WDK2FJUH.js');
121
+ var _chunkKJPUYQEZjs = require('./chunk-KJPUYQEZ.js');
122
122
 
123
123
 
124
124
 
package/dist/index.mjs CHANGED
@@ -46,9 +46,15 @@ import {
46
46
  getProjectConfigurations
47
47
  } from "./chunk-V7IOKRJA.mjs";
48
48
  import "./chunk-V7YZ3666.mjs";
49
+ import {
50
+ unbuildExecutorFn
51
+ } from "./chunk-7H4PXXWW.mjs";
49
52
  import {
50
53
  sizeLimitExecutorFn
51
54
  } from "./chunk-KM47X5XW.mjs";
55
+ import {
56
+ LARGE_BUFFER
57
+ } from "./chunk-VBPOZVKY.mjs";
52
58
  import {
53
59
  tsdownExecutorFn
54
60
  } from "./chunk-UF3YMASN.mjs";
@@ -56,8 +62,8 @@ import {
56
62
  typiaExecutorFn
57
63
  } from "./chunk-2KNHEXJQ.mjs";
58
64
  import {
59
- unbuildExecutorFn
60
- } from "./chunk-7H4PXXWW.mjs";
65
+ cargoFormatExecutor
66
+ } from "./chunk-YILBFUCI.mjs";
61
67
  import {
62
68
  getRegistryVersion
63
69
  } from "./chunk-XUYTELRS.mjs";
@@ -66,8 +72,8 @@ import {
66
72
  } from "./chunk-OA6GD45B.mjs";
67
73
  import "./chunk-N2P34ZQV.mjs";
68
74
  import {
69
- LARGE_BUFFER
70
- } from "./chunk-VBPOZVKY.mjs";
75
+ cargoBuildExecutor
76
+ } from "./chunk-RSFH5OLL.mjs";
71
77
  import {
72
78
  cargoCheckExecutor
73
79
  } from "./chunk-P4ZEGEQX.mjs";
@@ -77,12 +83,6 @@ import {
77
83
  import {
78
84
  cargoDocExecutor
79
85
  } from "./chunk-7AXJ27FU.mjs";
80
- import {
81
- cargoFormatExecutor
82
- } from "./chunk-YILBFUCI.mjs";
83
- import {
84
- cargoBuildExecutor
85
- } from "./chunk-RSFH5OLL.mjs";
86
86
  import {
87
87
  pnpmCatalogUpdate
88
88
  } from "./chunk-JB4KCMSB.mjs";
@@ -101,6 +101,9 @@ import "./chunk-RLIZVCIN.mjs";
101
101
  import {
102
102
  neutralLibraryGeneratorFn
103
103
  } from "./chunk-APSDUSBR.mjs";
104
+ import {
105
+ nodeLibraryGeneratorFn
106
+ } from "./chunk-Q6OBRMZG.mjs";
104
107
  import {
105
108
  presetGeneratorFn
106
109
  } from "./chunk-QDZUYDVM.mjs";
@@ -110,15 +113,12 @@ import {
110
113
  import {
111
114
  browserLibraryGeneratorFn
112
115
  } from "./chunk-7GW75RON.mjs";
113
- import {
114
- configSchemaGeneratorFn
115
- } from "./chunk-S73S6XCY.mjs";
116
116
  import {
117
117
  initGenerator
118
118
  } from "./chunk-X3GPVZMH.mjs";
119
119
  import {
120
- nodeLibraryGeneratorFn
121
- } from "./chunk-Q6OBRMZG.mjs";
120
+ configSchemaGeneratorFn
121
+ } from "./chunk-S73S6XCY.mjs";
122
122
  import {
123
123
  createProjectTsConfigJson,
124
124
  getOutputPath,
@@ -1,11 +1,11 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunk3WQQLTVCjs = require('../../../chunk-3WQQLTVC.js');
4
+ var _chunkYIBMB7QBjs = require('../../../chunk-YIBMB7QB.js');
5
5
  require('../../../chunk-UF6KFXG5.js');
6
6
  require('../../../chunk-7YRW5HNX.js');
7
7
  require('../../../chunk-3GQAWCBQ.js');
8
8
 
9
9
 
10
10
 
11
- exports.createNodes = _chunk3WQQLTVCjs.createNodes; exports.name = _chunk3WQQLTVCjs.name;
11
+ exports.createNodes = _chunkYIBMB7QBjs.createNodes; exports.name = _chunkYIBMB7QBjs.name;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  createNodes,
3
3
  name
4
- } from "../../../chunk-OJ45PFD5.mjs";
4
+ } from "../../../chunk-GEFYMTJE.mjs";
5
5
  import "../../../chunk-HUCDWLQ3.mjs";
6
6
  import "../../../chunk-W3SWWT4A.mjs";
7
7
  import "../../../chunk-R7DU2APC.mjs";
@@ -1,11 +1,11 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunk3WQQLTVCjs = require('../../../chunk-3WQQLTVC.js');
4
+ var _chunkYIBMB7QBjs = require('../../../chunk-YIBMB7QB.js');
5
5
  require('../../../chunk-UF6KFXG5.js');
6
6
  require('../../../chunk-7YRW5HNX.js');
7
7
  require('../../../chunk-3GQAWCBQ.js');
8
8
 
9
9
 
10
10
 
11
- exports.createNodes = _chunk3WQQLTVCjs.createNodes; exports.name = _chunk3WQQLTVCjs.name;
11
+ exports.createNodes = _chunkYIBMB7QBjs.createNodes; exports.name = _chunkYIBMB7QBjs.name;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  createNodes,
3
3
  name
4
- } from "../../../chunk-OJ45PFD5.mjs";
4
+ } from "../../../chunk-GEFYMTJE.mjs";
5
5
  import "../../../chunk-HUCDWLQ3.mjs";
6
6
  import "../../../chunk-W3SWWT4A.mjs";
7
7
  import "../../../chunk-R7DU2APC.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.250.3",
3
+ "version": "1.250.5",
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",