@storm-software/workspace-tools 1.248.4 → 1.249.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 +16 -0
- package/README.md +1 -1
- package/config/base.json +6 -33
- package/dist/{chunk-JIQDXVMU.js → chunk-ALVQJ4FB.js} +56 -42
- package/dist/{chunk-WK734NEX.mjs → chunk-P7AC5SKJ.mjs} +56 -42
- package/dist/executors.js +3 -3
- package/dist/executors.mjs +3 -3
- package/dist/generators.js +2 -2
- package/dist/generators.mjs +3 -3
- package/dist/index.js +5 -5
- package/dist/index.mjs +6 -6
- package/dist/src/plugins/typescript/index.js +2 -2
- package/dist/src/plugins/typescript/index.mjs +1 -1
- package/dist/src/plugins/typescript/project-config.js +2 -2
- package/dist/src/plugins/typescript/project-config.mjs +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## 1.249.0 (2025-02-04)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- **workspace-tools:** Check projectRoot when applying ESLint config to `lint` executor ([6c00fe6f9](https://github.com/storm-software/storm-ops/commit/6c00fe6f9))
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate README markdown files ([12a2f638f](https://github.com/storm-software/storm-ops/commit/12a2f638f))
|
|
10
|
+
|
|
11
|
+
## 1.248.5 (2025-02-04)
|
|
12
|
+
|
|
13
|
+
### Miscellaneous
|
|
14
|
+
|
|
15
|
+
- **config-tools:** Do not include shims in dist code ([193c9b45f](https://github.com/storm-software/storm-ops/commit/193c9b45f))
|
|
16
|
+
|
|
1
17
|
## 1.248.4 (2025-02-04)
|
|
2
18
|
|
|
3
19
|
### 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 -->
|
package/config/base.json
CHANGED
|
@@ -30,19 +30,15 @@
|
|
|
30
30
|
"namedInputs": {
|
|
31
31
|
"sharedGlobals": [
|
|
32
32
|
"{workspaceRoot}/.github/**/*",
|
|
33
|
+
"{workspaceRoot}/.gitattributes",
|
|
34
|
+
"{workspaceRoot}/.gitignore",
|
|
33
35
|
"{workspaceRoot}/assets/**/*",
|
|
34
36
|
"{workspaceRoot}/tsconfig.*.json",
|
|
35
37
|
"{workspaceRoot}/.npmrc",
|
|
36
38
|
"{workspaceRoot}/.npmignore",
|
|
37
39
|
"{workspaceRoot}/package.json",
|
|
38
40
|
"{workspaceRoot}/pnpm-workspace.yaml",
|
|
39
|
-
"{workspaceRoot}/pnpm-lock.yaml",
|
|
40
|
-
"{workspaceRoot}/package-lock.yaml",
|
|
41
|
-
"{workspaceRoot}/yarn-lock.yaml",
|
|
42
|
-
"{workspaceRoot}/bun.lockb",
|
|
43
41
|
"{workspaceRoot}/LICENSE",
|
|
44
|
-
"{workspaceRoot}/.gitattributes",
|
|
45
|
-
"{workspaceRoot}/.gitignore",
|
|
46
42
|
"{workspaceRoot}/nx.json",
|
|
47
43
|
"{workspaceRoot}/.nxignore",
|
|
48
44
|
"{workspaceRoot}/storm-workspace.json",
|
|
@@ -64,7 +60,7 @@
|
|
|
64
60
|
"{workspaceRoot}/.storm-workspace/config.ts",
|
|
65
61
|
"{workspaceRoot}/.storm-workspace/config.*.ts",
|
|
66
62
|
"{workspaceRoot}/.env",
|
|
67
|
-
"{workspaceRoot}/.env
|
|
63
|
+
"{workspaceRoot}/.env.*"
|
|
68
64
|
],
|
|
69
65
|
"default": ["sharedGlobals", "{projectRoot}/**/*"],
|
|
70
66
|
"production": [
|
|
@@ -307,36 +303,20 @@
|
|
|
307
303
|
]
|
|
308
304
|
},
|
|
309
305
|
"targetDefaults": {
|
|
310
|
-
"lint-ls": {
|
|
311
|
-
"outputs": ["{projectRoot}/**/*"],
|
|
312
|
-
"inputs": ["linting", "default", "^production"],
|
|
313
|
-
"dependsOn": ["^lint-ls"],
|
|
314
|
-
"executor": "nx:run-commands",
|
|
315
|
-
"options": {
|
|
316
|
-
"command": "pnpm exec ls-lint --config=\"@storm-software/linting-tools/ls-lint/config.yml\" --workdir=\"{projectRoot}\"",
|
|
317
|
-
"color": true
|
|
318
|
-
}
|
|
319
|
-
},
|
|
320
306
|
"lint-markdown": {
|
|
321
307
|
"outputs": ["{projectRoot}/**/*.md", "{projectRoot}/**/*.mdx"],
|
|
322
|
-
"inputs": ["{projectRoot}/**/*.md", "{projectRoot}/**/*.mdx"],
|
|
308
|
+
"inputs": ["linting", "{projectRoot}/**/*.md", "{projectRoot}/**/*.mdx"],
|
|
323
309
|
"dependsOn": ["^lint-markdown"],
|
|
324
310
|
"executor": "nx:run-commands",
|
|
325
311
|
"options": {
|
|
326
|
-
"command": "pnpm exec markdownlint-cli2 \"{projectRoot}/**/*.{md,mdx,markdown}\" --config=\"./node_modules/@storm-software/
|
|
312
|
+
"command": "pnpm exec markdownlint-cli2 \"{projectRoot}/**/*.{md,mdx,markdown}\" --config=\"./node_modules/@storm-software/markdownlint/config/.markdownlint-cli2.jsonc\"",
|
|
327
313
|
"color": true
|
|
328
314
|
}
|
|
329
315
|
},
|
|
330
316
|
"lint": {
|
|
331
317
|
"outputs": ["{projectRoot}"],
|
|
332
318
|
"inputs": ["linting", "default", "^production"],
|
|
333
|
-
"dependsOn": [
|
|
334
|
-
"lint-ls",
|
|
335
|
-
"lint-eslint",
|
|
336
|
-
"lint-markdown",
|
|
337
|
-
"lint-docs",
|
|
338
|
-
"^lint"
|
|
339
|
-
],
|
|
319
|
+
"dependsOn": ["lint-markdown", "lint-docs", "^lint"],
|
|
340
320
|
"executor": "nx:run-commands",
|
|
341
321
|
"options": {
|
|
342
322
|
"command": "echo Linted the project files in \"{projectRoot}\" "
|
|
@@ -475,13 +455,6 @@
|
|
|
475
455
|
}
|
|
476
456
|
},
|
|
477
457
|
"plugins": [
|
|
478
|
-
{
|
|
479
|
-
"plugin": "@nx/eslint/plugin",
|
|
480
|
-
"options": {
|
|
481
|
-
"targetName": "lint-eslint",
|
|
482
|
-
"useFlatConfig": true
|
|
483
|
-
}
|
|
484
|
-
},
|
|
485
458
|
"@storm-software/workspace-tools/plugins/typescript",
|
|
486
459
|
"@storm-software/workspace-tools/plugins/typescript/tsup",
|
|
487
460
|
"@storm-software/workspace-tools/plugins/typescript/untyped"
|
|
@@ -38,24 +38,6 @@ 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-ls"]) {
|
|
42
|
-
targets["lint-ls"] = {
|
|
43
|
-
cache: true,
|
|
44
|
-
inputs: [
|
|
45
|
-
"linting",
|
|
46
|
-
"typescript",
|
|
47
|
-
"^production"
|
|
48
|
-
],
|
|
49
|
-
dependsOn: [
|
|
50
|
-
"^lint-ls"
|
|
51
|
-
],
|
|
52
|
-
executor: "nx:run-commands",
|
|
53
|
-
options: {
|
|
54
|
-
command: 'pnpm exec ls-lint --config="@storm-software/linting-tools/ls-lint/config.yml" --workdir="{projectRoot}"',
|
|
55
|
-
color: true
|
|
56
|
-
}
|
|
57
|
-
};
|
|
58
|
-
}
|
|
59
41
|
if (!targets["lint-markdown"]) {
|
|
60
42
|
targets["lint-markdown"] = {
|
|
61
43
|
cache: true,
|
|
@@ -64,6 +46,7 @@ var createNodes = [
|
|
|
64
46
|
"{projectRoot}/**/*.mdx"
|
|
65
47
|
],
|
|
66
48
|
inputs: [
|
|
49
|
+
"linting",
|
|
67
50
|
"{projectRoot}/**/*.md",
|
|
68
51
|
"{projectRoot}/**/*.mdx"
|
|
69
52
|
],
|
|
@@ -72,35 +55,38 @@ var createNodes = [
|
|
|
72
55
|
],
|
|
73
56
|
executor: "nx:run-commands",
|
|
74
57
|
options: {
|
|
75
|
-
command: 'pnpm exec markdownlint-cli2 "{projectRoot}/**/*.{md,mdx,markdown}" --config="./node_modules/@storm-software/
|
|
76
|
-
color: true
|
|
58
|
+
command: 'pnpm exec markdownlint-cli2 "{projectRoot}/**/*.{md,mdx,markdown}" --config="./node_modules/@storm-software/markdownlint/config/.markdownlint-cli2.jsonc" --fix'
|
|
77
59
|
}
|
|
78
60
|
};
|
|
79
61
|
}
|
|
80
62
|
if (!targets.lint) {
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
],
|
|
88
|
-
dependsOn: [
|
|
89
|
-
"lint-ls",
|
|
90
|
-
"lint-sherif",
|
|
91
|
-
"lint-knip",
|
|
92
|
-
"lint-docs",
|
|
93
|
-
"^lint"
|
|
94
|
-
],
|
|
95
|
-
executor: "@nx/eslint:lint",
|
|
96
|
-
options: {
|
|
97
|
-
format: "stylish",
|
|
98
|
-
fix: true,
|
|
63
|
+
let eslintConfig = checkEslintConfigAtPath(project.root);
|
|
64
|
+
if (!eslintConfig) {
|
|
65
|
+
eslintConfig = checkEslintConfigAtPath(ctx.workspaceRoot);
|
|
66
|
+
}
|
|
67
|
+
if (eslintConfig) {
|
|
68
|
+
targets.lint = {
|
|
99
69
|
cache: true,
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
70
|
+
inputs: [
|
|
71
|
+
"linting",
|
|
72
|
+
"typescript",
|
|
73
|
+
"^production"
|
|
74
|
+
],
|
|
75
|
+
dependsOn: [
|
|
76
|
+
"lint-markdown",
|
|
77
|
+
"^lint"
|
|
78
|
+
],
|
|
79
|
+
executor: "@nx/eslint:lint",
|
|
80
|
+
options: {
|
|
81
|
+
format: "stylish",
|
|
82
|
+
fix: true,
|
|
83
|
+
errorOnUnmatchedPattern: false,
|
|
84
|
+
cache: true,
|
|
85
|
+
cacheLocation: "{workspaceRoot}/node_modules/.cache/eslint",
|
|
86
|
+
eslintConfig
|
|
87
|
+
}
|
|
88
|
+
};
|
|
89
|
+
}
|
|
104
90
|
}
|
|
105
91
|
if (!targets["format-readme"]) {
|
|
106
92
|
targets["format-readme"] = {
|
|
@@ -375,6 +361,34 @@ async function createTsconfig(projectJsonPath, workspaceRoot) {
|
|
|
375
361
|
}
|
|
376
362
|
}
|
|
377
363
|
_chunk3GQAWCBQjs.__name.call(void 0, createTsconfig, "createTsconfig");
|
|
364
|
+
function checkEslintConfigAtPath(directory) {
|
|
365
|
+
const hasEslintConfigFile = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (fileName) => {
|
|
366
|
+
return _fs.existsSync.call(void 0, _path.join.call(void 0, directory, fileName));
|
|
367
|
+
}, "hasEslintConfigFile");
|
|
368
|
+
if (hasEslintConfigFile(".eslintrc.js")) {
|
|
369
|
+
return ".eslintrc.js";
|
|
370
|
+
} else if (hasEslintConfigFile(".eslintrc.cjs")) {
|
|
371
|
+
return ".eslintrc.cjs";
|
|
372
|
+
} else if (hasEslintConfigFile(".eslintrc.yaml")) {
|
|
373
|
+
return ".eslintrc.yaml";
|
|
374
|
+
} else if (hasEslintConfigFile(".eslintrc.yml")) {
|
|
375
|
+
return ".eslintrc.yml";
|
|
376
|
+
} else if (hasEslintConfigFile(".eslintrc.json")) {
|
|
377
|
+
return ".eslintrc.json";
|
|
378
|
+
} else if (hasEslintConfigFile(".eslintrc")) {
|
|
379
|
+
return ".eslintrc";
|
|
380
|
+
} else if (hasEslintConfigFile("eslint.config.js")) {
|
|
381
|
+
return "eslint.config.js";
|
|
382
|
+
} else if (hasEslintConfigFile("eslint.config.cjs")) {
|
|
383
|
+
return "eslint.config.cjs";
|
|
384
|
+
} else if (hasEslintConfigFile("eslint.config.mjs")) {
|
|
385
|
+
return "eslint.config.mjs";
|
|
386
|
+
} else if (hasEslintConfigFile("eslint.config.ts")) {
|
|
387
|
+
return "eslint.config.ts";
|
|
388
|
+
}
|
|
389
|
+
return null;
|
|
390
|
+
}
|
|
391
|
+
_chunk3GQAWCBQjs.__name.call(void 0, checkEslintConfigAtPath, "checkEslintConfigAtPath");
|
|
378
392
|
|
|
379
393
|
|
|
380
394
|
|
|
@@ -38,24 +38,6 @@ var createNodes = [
|
|
|
38
38
|
}
|
|
39
39
|
const nxJson = readNxJson(ctx.workspaceRoot);
|
|
40
40
|
const targets = readTargetsFromPackageJson(packageJson, nxJson);
|
|
41
|
-
if (!targets["lint-ls"]) {
|
|
42
|
-
targets["lint-ls"] = {
|
|
43
|
-
cache: true,
|
|
44
|
-
inputs: [
|
|
45
|
-
"linting",
|
|
46
|
-
"typescript",
|
|
47
|
-
"^production"
|
|
48
|
-
],
|
|
49
|
-
dependsOn: [
|
|
50
|
-
"^lint-ls"
|
|
51
|
-
],
|
|
52
|
-
executor: "nx:run-commands",
|
|
53
|
-
options: {
|
|
54
|
-
command: 'pnpm exec ls-lint --config="@storm-software/linting-tools/ls-lint/config.yml" --workdir="{projectRoot}"',
|
|
55
|
-
color: true
|
|
56
|
-
}
|
|
57
|
-
};
|
|
58
|
-
}
|
|
59
41
|
if (!targets["lint-markdown"]) {
|
|
60
42
|
targets["lint-markdown"] = {
|
|
61
43
|
cache: true,
|
|
@@ -64,6 +46,7 @@ var createNodes = [
|
|
|
64
46
|
"{projectRoot}/**/*.mdx"
|
|
65
47
|
],
|
|
66
48
|
inputs: [
|
|
49
|
+
"linting",
|
|
67
50
|
"{projectRoot}/**/*.md",
|
|
68
51
|
"{projectRoot}/**/*.mdx"
|
|
69
52
|
],
|
|
@@ -72,35 +55,38 @@ var createNodes = [
|
|
|
72
55
|
],
|
|
73
56
|
executor: "nx:run-commands",
|
|
74
57
|
options: {
|
|
75
|
-
command: 'pnpm exec markdownlint-cli2 "{projectRoot}/**/*.{md,mdx,markdown}" --config="./node_modules/@storm-software/
|
|
76
|
-
color: true
|
|
58
|
+
command: 'pnpm exec markdownlint-cli2 "{projectRoot}/**/*.{md,mdx,markdown}" --config="./node_modules/@storm-software/markdownlint/config/.markdownlint-cli2.jsonc" --fix'
|
|
77
59
|
}
|
|
78
60
|
};
|
|
79
61
|
}
|
|
80
62
|
if (!targets.lint) {
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
],
|
|
88
|
-
dependsOn: [
|
|
89
|
-
"lint-ls",
|
|
90
|
-
"lint-sherif",
|
|
91
|
-
"lint-knip",
|
|
92
|
-
"lint-docs",
|
|
93
|
-
"^lint"
|
|
94
|
-
],
|
|
95
|
-
executor: "@nx/eslint:lint",
|
|
96
|
-
options: {
|
|
97
|
-
format: "stylish",
|
|
98
|
-
fix: true,
|
|
63
|
+
let eslintConfig = checkEslintConfigAtPath(project.root);
|
|
64
|
+
if (!eslintConfig) {
|
|
65
|
+
eslintConfig = checkEslintConfigAtPath(ctx.workspaceRoot);
|
|
66
|
+
}
|
|
67
|
+
if (eslintConfig) {
|
|
68
|
+
targets.lint = {
|
|
99
69
|
cache: true,
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
70
|
+
inputs: [
|
|
71
|
+
"linting",
|
|
72
|
+
"typescript",
|
|
73
|
+
"^production"
|
|
74
|
+
],
|
|
75
|
+
dependsOn: [
|
|
76
|
+
"lint-markdown",
|
|
77
|
+
"^lint"
|
|
78
|
+
],
|
|
79
|
+
executor: "@nx/eslint:lint",
|
|
80
|
+
options: {
|
|
81
|
+
format: "stylish",
|
|
82
|
+
fix: true,
|
|
83
|
+
errorOnUnmatchedPattern: false,
|
|
84
|
+
cache: true,
|
|
85
|
+
cacheLocation: "{workspaceRoot}/node_modules/.cache/eslint",
|
|
86
|
+
eslintConfig
|
|
87
|
+
}
|
|
88
|
+
};
|
|
89
|
+
}
|
|
104
90
|
}
|
|
105
91
|
if (!targets["format-readme"]) {
|
|
106
92
|
targets["format-readme"] = {
|
|
@@ -375,6 +361,34 @@ async function createTsconfig(projectJsonPath, workspaceRoot) {
|
|
|
375
361
|
}
|
|
376
362
|
}
|
|
377
363
|
__name(createTsconfig, "createTsconfig");
|
|
364
|
+
function checkEslintConfigAtPath(directory) {
|
|
365
|
+
const hasEslintConfigFile = /* @__PURE__ */ __name((fileName) => {
|
|
366
|
+
return existsSync(join(directory, fileName));
|
|
367
|
+
}, "hasEslintConfigFile");
|
|
368
|
+
if (hasEslintConfigFile(".eslintrc.js")) {
|
|
369
|
+
return ".eslintrc.js";
|
|
370
|
+
} else if (hasEslintConfigFile(".eslintrc.cjs")) {
|
|
371
|
+
return ".eslintrc.cjs";
|
|
372
|
+
} else if (hasEslintConfigFile(".eslintrc.yaml")) {
|
|
373
|
+
return ".eslintrc.yaml";
|
|
374
|
+
} else if (hasEslintConfigFile(".eslintrc.yml")) {
|
|
375
|
+
return ".eslintrc.yml";
|
|
376
|
+
} else if (hasEslintConfigFile(".eslintrc.json")) {
|
|
377
|
+
return ".eslintrc.json";
|
|
378
|
+
} else if (hasEslintConfigFile(".eslintrc")) {
|
|
379
|
+
return ".eslintrc";
|
|
380
|
+
} else if (hasEslintConfigFile("eslint.config.js")) {
|
|
381
|
+
return "eslint.config.js";
|
|
382
|
+
} else if (hasEslintConfigFile("eslint.config.cjs")) {
|
|
383
|
+
return "eslint.config.cjs";
|
|
384
|
+
} else if (hasEslintConfigFile("eslint.config.mjs")) {
|
|
385
|
+
return "eslint.config.mjs";
|
|
386
|
+
} else if (hasEslintConfigFile("eslint.config.ts")) {
|
|
387
|
+
return "eslint.config.ts";
|
|
388
|
+
}
|
|
389
|
+
return null;
|
|
390
|
+
}
|
|
391
|
+
__name(checkEslintConfigAtPath, "checkEslintConfigAtPath");
|
|
378
392
|
|
|
379
393
|
export {
|
|
380
394
|
name,
|
package/dist/executors.js
CHANGED
|
@@ -26,15 +26,15 @@ var _chunkWL7UV3YXjs = require('./chunk-WL7UV3YX.js');
|
|
|
26
26
|
require('./chunk-R2NBU264.js');
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
var _chunkK434EGC4js = require('./chunk-K434EGC4.js');
|
|
30
|
-
|
|
31
|
-
|
|
32
29
|
var _chunk4AMZUCHLjs = require('./chunk-4AMZUCHL.js');
|
|
33
30
|
|
|
34
31
|
|
|
35
32
|
var _chunkG7HTMCQKjs = require('./chunk-G7HTMCQK.js');
|
|
36
33
|
|
|
37
34
|
|
|
35
|
+
var _chunkK434EGC4js = require('./chunk-K434EGC4.js');
|
|
36
|
+
|
|
37
|
+
|
|
38
38
|
var _chunk4SJW3KRVjs = require('./chunk-4SJW3KRV.js');
|
|
39
39
|
require('./chunk-CUPARBOS.js');
|
|
40
40
|
require('./chunk-ULBTYC2B.js');
|
package/dist/executors.mjs
CHANGED
|
@@ -24,15 +24,15 @@ import {
|
|
|
24
24
|
esbuildExecutorFn
|
|
25
25
|
} from "./chunk-OA6GD45B.mjs";
|
|
26
26
|
import "./chunk-N2P34ZQV.mjs";
|
|
27
|
-
import {
|
|
28
|
-
cargoBuildExecutor
|
|
29
|
-
} from "./chunk-RSFH5OLL.mjs";
|
|
30
27
|
import {
|
|
31
28
|
cargoCheckExecutor
|
|
32
29
|
} from "./chunk-P4ZEGEQX.mjs";
|
|
33
30
|
import {
|
|
34
31
|
cargoClippyExecutor
|
|
35
32
|
} from "./chunk-57LRWY5U.mjs";
|
|
33
|
+
import {
|
|
34
|
+
cargoBuildExecutor
|
|
35
|
+
} from "./chunk-RSFH5OLL.mjs";
|
|
36
36
|
import {
|
|
37
37
|
cargoDocExecutor
|
|
38
38
|
} from "./chunk-7AXJ27FU.mjs";
|
package/dist/generators.js
CHANGED
|
@@ -7,10 +7,10 @@ var _chunkSJNJ6TCDjs = require('./chunk-SJNJ6TCD.js');
|
|
|
7
7
|
var _chunkWDK2FJUHjs = require('./chunk-WDK2FJUH.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
var
|
|
10
|
+
var _chunkDCJXS5XIjs = require('./chunk-DCJXS5XI.js');
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
var
|
|
13
|
+
var _chunkYDV7OQMNjs = require('./chunk-YDV7OQMN.js');
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
var _chunkQKALACBCjs = require('./chunk-QKALACBC.js');
|
package/dist/generators.mjs
CHANGED
|
@@ -5,12 +5,12 @@ import {
|
|
|
5
5
|
import {
|
|
6
6
|
nodeLibraryGeneratorFn
|
|
7
7
|
} from "./chunk-Q6OBRMZG.mjs";
|
|
8
|
-
import {
|
|
9
|
-
releaseVersionGeneratorFn
|
|
10
|
-
} from "./chunk-TNAEFYVH.mjs";
|
|
11
8
|
import {
|
|
12
9
|
presetGeneratorFn
|
|
13
10
|
} from "./chunk-QDZUYDVM.mjs";
|
|
11
|
+
import {
|
|
12
|
+
releaseVersionGeneratorFn
|
|
13
|
+
} from "./chunk-TNAEFYVH.mjs";
|
|
14
14
|
import {
|
|
15
15
|
browserLibraryGeneratorFn
|
|
16
16
|
} from "./chunk-7GW75RON.mjs";
|
package/dist/index.js
CHANGED
|
@@ -73,15 +73,15 @@ var _chunkWL7UV3YXjs = require('./chunk-WL7UV3YX.js');
|
|
|
73
73
|
require('./chunk-R2NBU264.js');
|
|
74
74
|
|
|
75
75
|
|
|
76
|
-
var _chunkK434EGC4js = require('./chunk-K434EGC4.js');
|
|
77
|
-
|
|
78
|
-
|
|
79
76
|
var _chunk4AMZUCHLjs = require('./chunk-4AMZUCHL.js');
|
|
80
77
|
|
|
81
78
|
|
|
82
79
|
var _chunkG7HTMCQKjs = require('./chunk-G7HTMCQK.js');
|
|
83
80
|
|
|
84
81
|
|
|
82
|
+
var _chunkK434EGC4js = require('./chunk-K434EGC4.js');
|
|
83
|
+
|
|
84
|
+
|
|
85
85
|
var _chunk4SJW3KRVjs = require('./chunk-4SJW3KRV.js');
|
|
86
86
|
|
|
87
87
|
|
|
@@ -106,10 +106,10 @@ var _chunkSJNJ6TCDjs = require('./chunk-SJNJ6TCD.js');
|
|
|
106
106
|
var _chunkWDK2FJUHjs = require('./chunk-WDK2FJUH.js');
|
|
107
107
|
|
|
108
108
|
|
|
109
|
-
var
|
|
109
|
+
var _chunkDCJXS5XIjs = require('./chunk-DCJXS5XI.js');
|
|
110
110
|
|
|
111
111
|
|
|
112
|
-
var
|
|
112
|
+
var _chunkYDV7OQMNjs = require('./chunk-YDV7OQMN.js');
|
|
113
113
|
|
|
114
114
|
|
|
115
115
|
var _chunkQKALACBCjs = require('./chunk-QKALACBC.js');
|
package/dist/index.mjs
CHANGED
|
@@ -71,15 +71,15 @@ import {
|
|
|
71
71
|
esbuildExecutorFn
|
|
72
72
|
} from "./chunk-OA6GD45B.mjs";
|
|
73
73
|
import "./chunk-N2P34ZQV.mjs";
|
|
74
|
-
import {
|
|
75
|
-
cargoBuildExecutor
|
|
76
|
-
} from "./chunk-RSFH5OLL.mjs";
|
|
77
74
|
import {
|
|
78
75
|
cargoCheckExecutor
|
|
79
76
|
} from "./chunk-P4ZEGEQX.mjs";
|
|
80
77
|
import {
|
|
81
78
|
cargoClippyExecutor
|
|
82
79
|
} from "./chunk-57LRWY5U.mjs";
|
|
80
|
+
import {
|
|
81
|
+
cargoBuildExecutor
|
|
82
|
+
} from "./chunk-RSFH5OLL.mjs";
|
|
83
83
|
import {
|
|
84
84
|
cargoDocExecutor
|
|
85
85
|
} from "./chunk-7AXJ27FU.mjs";
|
|
@@ -104,12 +104,12 @@ import {
|
|
|
104
104
|
import {
|
|
105
105
|
nodeLibraryGeneratorFn
|
|
106
106
|
} from "./chunk-Q6OBRMZG.mjs";
|
|
107
|
-
import {
|
|
108
|
-
releaseVersionGeneratorFn
|
|
109
|
-
} from "./chunk-TNAEFYVH.mjs";
|
|
110
107
|
import {
|
|
111
108
|
presetGeneratorFn
|
|
112
109
|
} from "./chunk-QDZUYDVM.mjs";
|
|
110
|
+
import {
|
|
111
|
+
releaseVersionGeneratorFn
|
|
112
|
+
} from "./chunk-TNAEFYVH.mjs";
|
|
113
113
|
import {
|
|
114
114
|
browserLibraryGeneratorFn
|
|
115
115
|
} from "./chunk-7GW75RON.mjs";
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkALVQJ4FBjs = require('../../../chunk-ALVQJ4FB.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 =
|
|
11
|
+
exports.createNodes = _chunkALVQJ4FBjs.createNodes; exports.name = _chunkALVQJ4FBjs.name;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkALVQJ4FBjs = require('../../../chunk-ALVQJ4FB.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 =
|
|
11
|
+
exports.createNodes = _chunkALVQJ4FBjs.createNodes; exports.name = _chunkALVQJ4FBjs.name;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/workspace-tools",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.249.0",
|
|
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",
|
|
@@ -192,26 +192,27 @@
|
|
|
192
192
|
"sullivanpj"
|
|
193
193
|
],
|
|
194
194
|
"peerDependencies": {
|
|
195
|
-
"@nx/devkit": "^20.3.1",
|
|
196
195
|
"@storm-software/esbuild": "workspace:*",
|
|
197
196
|
"@storm-software/prettier": "workspace:*",
|
|
198
197
|
"@storm-software/tsdown": "workspace:*",
|
|
199
198
|
"@storm-software/unbuild": "workspace:*",
|
|
199
|
+
"markdownlint-cli2": "^0.17.2",
|
|
200
200
|
"nx": "^20.3.1",
|
|
201
|
-
"
|
|
201
|
+
"prettier": "^3.3.3"
|
|
202
202
|
},
|
|
203
203
|
"peerDependenciesMeta": {
|
|
204
|
-
"@nx/devkit": { "optional": false },
|
|
205
204
|
"@storm-software/esbuild": { "optional": true },
|
|
206
205
|
"@storm-software/prettier": { "optional": false },
|
|
207
206
|
"@storm-software/tsdown": { "optional": true },
|
|
208
207
|
"@storm-software/unbuild": { "optional": true },
|
|
208
|
+
"markdownlint-cli2": { "optional": false },
|
|
209
209
|
"nx": { "optional": false },
|
|
210
|
-
"
|
|
210
|
+
"prettier": { "optional": false }
|
|
211
211
|
},
|
|
212
212
|
"dependencies": {
|
|
213
213
|
"@ltd/j-toml": "1.38.0",
|
|
214
214
|
"@microsoft/api-extractor": "^7.48.1",
|
|
215
|
+
"@nx/devkit": "^20.3.1",
|
|
215
216
|
"@samchon/openapi": "^2.3.0",
|
|
216
217
|
"@size-limit/esbuild": "11.1.4",
|
|
217
218
|
"@size-limit/esbuild-why": "11.1.4",
|
|
@@ -233,7 +234,6 @@
|
|
|
233
234
|
"zod-to-json-schema": "3.23.1"
|
|
234
235
|
},
|
|
235
236
|
"devDependencies": {
|
|
236
|
-
"@nx/devkit": "^20.3.1",
|
|
237
237
|
"@types/micromatch": "^4.0.9",
|
|
238
238
|
"@types/node": "^22.10.2",
|
|
239
239
|
"@types/semver": "7.5.8",
|