@storm-software/workspace-tools 1.252.3 → 1.253.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 +12 -0
- package/dist/{chunk-OE2NLRDG.mjs → chunk-HGE4C5SO.mjs} +7 -4
- package/dist/{chunk-FUXJ4XG3.js → chunk-RTFMVX72.js} +12 -9
- package/dist/executors.js +10 -10
- package/dist/executors.mjs +14 -14
- package/dist/generators.js +6 -6
- package/dist/generators.mjs +8 -8
- package/dist/index.js +16 -16
- package/dist/index.mjs +22 -22
- 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.d.mts +3 -0
- package/dist/src/plugins/typescript/project-config.d.ts +3 -0
- package/dist/src/plugins/typescript/project-config.js +2 -2
- package/dist/src/plugins/typescript/project-config.mjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 1.253.0 (2025-02-07)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- **workspace-tools:** Added `enableKnip`, `enableMarkdownlint`, and `enableEslint` options to plugin ([35fc9dba1](https://github.com/storm-software/storm-ops/commit/35fc9dba1))
|
|
6
|
+
|
|
7
|
+
## 1.252.4 (2025-02-07)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- **workspace-tools:** Added `workspace` argument to `lint-knip` execution ([7af85ff50](https://github.com/storm-software/storm-ops/commit/7af85ff50))
|
|
12
|
+
|
|
1
13
|
## 1.252.3 (2025-02-07)
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|
|
@@ -36,10 +36,13 @@ var createNodes = [
|
|
|
36
36
|
if (opts?.includeApps === false && project.projectType === "application") {
|
|
37
37
|
return {};
|
|
38
38
|
}
|
|
39
|
+
const enableKnip = opts?.enableKnip !== false;
|
|
40
|
+
const enableMarkdownlint = opts?.enableMarkdownlint !== false;
|
|
41
|
+
const enableEslint = opts?.enableEslint !== false;
|
|
39
42
|
const nxJson = readNxJson(ctx.workspaceRoot);
|
|
40
43
|
const targets = readTargetsFromPackageJson(packageJson, nxJson);
|
|
41
44
|
const relativePath = relative(dirname(file), ctx.workspaceRoot);
|
|
42
|
-
if (!targets["lint-knip"]) {
|
|
45
|
+
if (!targets["lint-knip"] && enableKnip) {
|
|
43
46
|
targets["lint-knip"] = {
|
|
44
47
|
cache: true,
|
|
45
48
|
outputs: [
|
|
@@ -56,11 +59,11 @@ var createNodes = [
|
|
|
56
59
|
],
|
|
57
60
|
executor: "nx:run-commands",
|
|
58
61
|
options: {
|
|
59
|
-
command: `pnpm exec knip --config "${join(relativePath, "node_modules/@storm-software/linting-tools/knip/config.json")}" --tsConfig "{projectRoot}/tsconfig.json" --directory "{projectRoot}" --fix --cache --cache-location "${join(relativePath, "node_modules/.cache/knip/{projectRoot}")}"`
|
|
62
|
+
command: `pnpm exec knip --config "${join(relativePath, "node_modules/@storm-software/linting-tools/knip/config.json").replaceAll("\\", "/")}" --tsConfig "{projectRoot}/tsconfig.json" --directory "{projectRoot}" --fix --cache --cache-location "${join(relativePath, "node_modules/.cache/knip/{projectRoot}").replaceAll("\\", "/")}" --workspace "${relativePath.replaceAll("\\", "/")}"`
|
|
60
63
|
}
|
|
61
64
|
};
|
|
62
65
|
}
|
|
63
|
-
if (!targets["lint-markdown"]) {
|
|
66
|
+
if (!targets["lint-markdown"] && enableMarkdownlint) {
|
|
64
67
|
targets["lint-markdown"] = {
|
|
65
68
|
cache: true,
|
|
66
69
|
outputs: [
|
|
@@ -81,7 +84,7 @@ var createNodes = [
|
|
|
81
84
|
}
|
|
82
85
|
};
|
|
83
86
|
}
|
|
84
|
-
if (!targets.lint) {
|
|
87
|
+
if (!targets.lint && enableEslint) {
|
|
85
88
|
let eslintConfig = checkEslintConfigAtPath(project.root);
|
|
86
89
|
if (!eslintConfig) {
|
|
87
90
|
eslintConfig = checkEslintConfigAtPath(ctx.workspaceRoot);
|
|
@@ -36,10 +36,13 @@ var createNodes = [
|
|
|
36
36
|
if (_optionalChain([opts, 'optionalAccess', _ => _.includeApps]) === false && project.projectType === "application") {
|
|
37
37
|
return {};
|
|
38
38
|
}
|
|
39
|
+
const enableKnip = _optionalChain([opts, 'optionalAccess', _2 => _2.enableKnip]) !== false;
|
|
40
|
+
const enableMarkdownlint = _optionalChain([opts, 'optionalAccess', _3 => _3.enableMarkdownlint]) !== false;
|
|
41
|
+
const enableEslint = _optionalChain([opts, 'optionalAccess', _4 => _4.enableEslint]) !== false;
|
|
39
42
|
const nxJson = _nxjsonjs.readNxJson.call(void 0, ctx.workspaceRoot);
|
|
40
43
|
const targets = _packagejson.readTargetsFromPackageJson.call(void 0, packageJson, nxJson);
|
|
41
44
|
const relativePath = _path.relative.call(void 0, _path.dirname.call(void 0, file), ctx.workspaceRoot);
|
|
42
|
-
if (!targets["lint-knip"]) {
|
|
45
|
+
if (!targets["lint-knip"] && enableKnip) {
|
|
43
46
|
targets["lint-knip"] = {
|
|
44
47
|
cache: true,
|
|
45
48
|
outputs: [
|
|
@@ -56,11 +59,11 @@ var createNodes = [
|
|
|
56
59
|
],
|
|
57
60
|
executor: "nx:run-commands",
|
|
58
61
|
options: {
|
|
59
|
-
command: `pnpm exec knip --config "${_path.join.call(void 0, relativePath, "node_modules/@storm-software/linting-tools/knip/config.json")}" --tsConfig "{projectRoot}/tsconfig.json" --directory "{projectRoot}" --fix --cache --cache-location "${_path.join.call(void 0, relativePath, "node_modules/.cache/knip/{projectRoot}")}"`
|
|
62
|
+
command: `pnpm exec knip --config "${_path.join.call(void 0, relativePath, "node_modules/@storm-software/linting-tools/knip/config.json").replaceAll("\\", "/")}" --tsConfig "{projectRoot}/tsconfig.json" --directory "{projectRoot}" --fix --cache --cache-location "${_path.join.call(void 0, relativePath, "node_modules/.cache/knip/{projectRoot}").replaceAll("\\", "/")}" --workspace "${relativePath.replaceAll("\\", "/")}"`
|
|
60
63
|
}
|
|
61
64
|
};
|
|
62
65
|
}
|
|
63
|
-
if (!targets["lint-markdown"]) {
|
|
66
|
+
if (!targets["lint-markdown"] && enableMarkdownlint) {
|
|
64
67
|
targets["lint-markdown"] = {
|
|
65
68
|
cache: true,
|
|
66
69
|
outputs: [
|
|
@@ -81,7 +84,7 @@ var createNodes = [
|
|
|
81
84
|
}
|
|
82
85
|
};
|
|
83
86
|
}
|
|
84
|
-
if (!targets.lint) {
|
|
87
|
+
if (!targets.lint && enableEslint) {
|
|
85
88
|
let eslintConfig = checkEslintConfigAtPath(project.root);
|
|
86
89
|
if (!eslintConfig) {
|
|
87
90
|
eslintConfig = checkEslintConfigAtPath(ctx.workspaceRoot);
|
|
@@ -239,8 +242,8 @@ var createNodes = [
|
|
|
239
242
|
cleanComments: true
|
|
240
243
|
}
|
|
241
244
|
};
|
|
242
|
-
_optionalChain([targets, 'access',
|
|
243
|
-
_optionalChain([targets, 'access',
|
|
245
|
+
_optionalChain([targets, 'access', _5 => _5["nx-release-publish"], 'access', _6 => _6.dependsOn, 'optionalAccess', _7 => _7.push, 'call', _8 => _8("clean-package")]);
|
|
246
|
+
_optionalChain([targets, 'access', _9 => _9["size-limit"], 'access', _10 => _10.dependsOn, 'optionalAccess', _11 => _11.push, 'call', _12 => _12("clean-package")]);
|
|
244
247
|
}
|
|
245
248
|
}
|
|
246
249
|
_chunk7YRW5HNXjs.addProjectTag.call(void 0, project, _chunk7YRW5HNXjs.ProjectTagConstants.Language.TAG_ID, _chunk7YRW5HNXjs.ProjectTagConstants.Language.TYPESCRIPT, {
|
|
@@ -270,15 +273,15 @@ var createNodes = [
|
|
|
270
273
|
break;
|
|
271
274
|
}
|
|
272
275
|
_chunk7YRW5HNXjs.setDefaultProjectTags.call(void 0, project, name);
|
|
273
|
-
return _optionalChain([project, 'optionalAccess',
|
|
276
|
+
return _optionalChain([project, 'optionalAccess', _13 => _13.name]) ? {
|
|
274
277
|
projects: {
|
|
275
278
|
[project.name]: {
|
|
276
279
|
...project,
|
|
277
280
|
targets,
|
|
278
281
|
release: {
|
|
279
|
-
..._optionalChain([project, 'optionalAccess',
|
|
282
|
+
..._optionalChain([project, 'optionalAccess', _14 => _14.release]),
|
|
280
283
|
version: {
|
|
281
|
-
..._optionalChain([project, 'optionalAccess',
|
|
284
|
+
..._optionalChain([project, 'optionalAccess', _15 => _15.release, 'optionalAccess', _16 => _16.version]),
|
|
282
285
|
generator: "@storm-software/workspace-tools:release-version"
|
|
283
286
|
}
|
|
284
287
|
}
|
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
|
|
|
7
|
-
var
|
|
10
|
+
var _chunkCQAGLRNYjs = require('./chunk-CQAGLRNY.js');
|
|
8
11
|
|
|
9
12
|
|
|
10
13
|
var _chunkFMOIAVZVjs = require('./chunk-FMOIAVZV.js');
|
|
11
14
|
|
|
12
15
|
|
|
13
|
-
var
|
|
16
|
+
var _chunkJXSTSZSGjs = require('./chunk-JXSTSZSG.js');
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
var _chunk5O6RWCBQjs = require('./chunk-5O6RWCBQ.js');
|
|
14
20
|
|
|
15
21
|
|
|
16
22
|
var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
|
|
@@ -20,22 +26,16 @@ var _chunkWL7UV3YXjs = require('./chunk-WL7UV3YX.js');
|
|
|
20
26
|
require('./chunk-R2NBU264.js');
|
|
21
27
|
|
|
22
28
|
|
|
23
|
-
var
|
|
29
|
+
var _chunkK434EGC4js = require('./chunk-K434EGC4.js');
|
|
24
30
|
|
|
25
31
|
|
|
26
32
|
var _chunk4AMZUCHLjs = require('./chunk-4AMZUCHL.js');
|
|
27
33
|
|
|
28
34
|
|
|
29
|
-
var _chunkG7HTMCQKjs = require('./chunk-G7HTMCQK.js');
|
|
30
|
-
|
|
31
|
-
|
|
32
35
|
var _chunk4SJW3KRVjs = require('./chunk-4SJW3KRV.js');
|
|
33
36
|
|
|
34
37
|
|
|
35
|
-
var
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
var _chunkK434EGC4js = require('./chunk-K434EGC4.js');
|
|
38
|
+
var _chunkG7HTMCQKjs = require('./chunk-G7HTMCQK.js');
|
|
39
39
|
require('./chunk-CUPARBOS.js');
|
|
40
40
|
require('./chunk-ULBTYC2B.js');
|
|
41
41
|
require('./chunk-ZMFVKBRM.js');
|
package/dist/executors.mjs
CHANGED
|
@@ -1,16 +1,22 @@
|
|
|
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";
|
|
5
8
|
import {
|
|
6
|
-
|
|
7
|
-
} from "./chunk-
|
|
9
|
+
LARGE_BUFFER
|
|
10
|
+
} from "./chunk-VBPOZVKY.mjs";
|
|
8
11
|
import {
|
|
9
12
|
tsdownExecutorFn
|
|
10
13
|
} from "./chunk-UF3YMASN.mjs";
|
|
11
14
|
import {
|
|
12
|
-
|
|
13
|
-
} from "./chunk-
|
|
15
|
+
typiaExecutorFn
|
|
16
|
+
} from "./chunk-2KNHEXJQ.mjs";
|
|
17
|
+
import {
|
|
18
|
+
cargoFormatExecutor
|
|
19
|
+
} from "./chunk-YILBFUCI.mjs";
|
|
14
20
|
import {
|
|
15
21
|
getRegistryVersion
|
|
16
22
|
} from "./chunk-XUYTELRS.mjs";
|
|
@@ -19,23 +25,17 @@ import {
|
|
|
19
25
|
} from "./chunk-OA6GD45B.mjs";
|
|
20
26
|
import "./chunk-N2P34ZQV.mjs";
|
|
21
27
|
import {
|
|
22
|
-
|
|
23
|
-
} from "./chunk-
|
|
28
|
+
cargoBuildExecutor
|
|
29
|
+
} from "./chunk-RSFH5OLL.mjs";
|
|
24
30
|
import {
|
|
25
31
|
cargoCheckExecutor
|
|
26
32
|
} from "./chunk-P4ZEGEQX.mjs";
|
|
27
|
-
import {
|
|
28
|
-
cargoClippyExecutor
|
|
29
|
-
} from "./chunk-57LRWY5U.mjs";
|
|
30
33
|
import {
|
|
31
34
|
cargoDocExecutor
|
|
32
35
|
} from "./chunk-7AXJ27FU.mjs";
|
|
33
36
|
import {
|
|
34
|
-
|
|
35
|
-
} from "./chunk-
|
|
36
|
-
import {
|
|
37
|
-
cargoBuildExecutor
|
|
38
|
-
} from "./chunk-RSFH5OLL.mjs";
|
|
37
|
+
cargoClippyExecutor
|
|
38
|
+
} from "./chunk-57LRWY5U.mjs";
|
|
39
39
|
import "./chunk-JB4KCMSB.mjs";
|
|
40
40
|
import "./chunk-XK3FSWMA.mjs";
|
|
41
41
|
import "./chunk-EIM3O6HY.mjs";
|
package/dist/generators.js
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-INERRJ6Q.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkDCJXS5XIjs = require('./chunk-DCJXS5XI.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkSJNJ6TCDjs = require('./chunk-SJNJ6TCD.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
var
|
|
10
|
+
var _chunkWDK2FJUHjs = require('./chunk-WDK2FJUH.js');
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
var
|
|
13
|
+
var _chunkYDV7OQMNjs = require('./chunk-YDV7OQMN.js');
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
var
|
|
16
|
+
var _chunkQKALACBCjs = require('./chunk-QKALACBC.js');
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
var _chunk3IZ3O4OKjs = require('./chunk-3IZ3O4OK.js');
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
var
|
|
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');
|
package/dist/generators.mjs
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
import "./chunk-RLIZVCIN.mjs";
|
|
2
|
-
import {
|
|
3
|
-
nodeLibraryGeneratorFn
|
|
4
|
-
} from "./chunk-Q6OBRMZG.mjs";
|
|
5
2
|
import {
|
|
6
3
|
presetGeneratorFn
|
|
7
4
|
} from "./chunk-QDZUYDVM.mjs";
|
|
5
|
+
import {
|
|
6
|
+
neutralLibraryGeneratorFn
|
|
7
|
+
} from "./chunk-APSDUSBR.mjs";
|
|
8
|
+
import {
|
|
9
|
+
nodeLibraryGeneratorFn
|
|
10
|
+
} from "./chunk-Q6OBRMZG.mjs";
|
|
8
11
|
import {
|
|
9
12
|
releaseVersionGeneratorFn
|
|
10
13
|
} from "./chunk-TNAEFYVH.mjs";
|
|
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
|
-
|
|
22
|
-
} from "./chunk-
|
|
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
|
|
|
54
|
-
var
|
|
57
|
+
var _chunkCQAGLRNYjs = require('./chunk-CQAGLRNY.js');
|
|
55
58
|
|
|
56
59
|
|
|
57
60
|
var _chunkFMOIAVZVjs = require('./chunk-FMOIAVZV.js');
|
|
58
61
|
|
|
59
62
|
|
|
60
|
-
var
|
|
63
|
+
var _chunkJXSTSZSGjs = require('./chunk-JXSTSZSG.js');
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
var _chunk5O6RWCBQjs = require('./chunk-5O6RWCBQ.js');
|
|
61
67
|
|
|
62
68
|
|
|
63
69
|
var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
|
|
@@ -67,22 +73,16 @@ var _chunkWL7UV3YXjs = require('./chunk-WL7UV3YX.js');
|
|
|
67
73
|
require('./chunk-R2NBU264.js');
|
|
68
74
|
|
|
69
75
|
|
|
70
|
-
var
|
|
76
|
+
var _chunkK434EGC4js = require('./chunk-K434EGC4.js');
|
|
71
77
|
|
|
72
78
|
|
|
73
79
|
var _chunk4AMZUCHLjs = require('./chunk-4AMZUCHL.js');
|
|
74
80
|
|
|
75
81
|
|
|
76
|
-
var _chunkG7HTMCQKjs = require('./chunk-G7HTMCQK.js');
|
|
77
|
-
|
|
78
|
-
|
|
79
82
|
var _chunk4SJW3KRVjs = require('./chunk-4SJW3KRV.js');
|
|
80
83
|
|
|
81
84
|
|
|
82
|
-
var
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
var _chunkK434EGC4js = require('./chunk-K434EGC4.js');
|
|
85
|
+
var _chunkG7HTMCQKjs = require('./chunk-G7HTMCQK.js');
|
|
86
86
|
|
|
87
87
|
|
|
88
88
|
var _chunkCUPARBOSjs = require('./chunk-CUPARBOS.js');
|
|
@@ -100,25 +100,25 @@ var _chunkULBTYC2Bjs = require('./chunk-ULBTYC2B.js');
|
|
|
100
100
|
require('./chunk-INERRJ6Q.js');
|
|
101
101
|
|
|
102
102
|
|
|
103
|
-
var
|
|
103
|
+
var _chunkDCJXS5XIjs = require('./chunk-DCJXS5XI.js');
|
|
104
104
|
|
|
105
105
|
|
|
106
|
-
var
|
|
106
|
+
var _chunkSJNJ6TCDjs = require('./chunk-SJNJ6TCD.js');
|
|
107
107
|
|
|
108
108
|
|
|
109
|
-
var
|
|
109
|
+
var _chunkWDK2FJUHjs = require('./chunk-WDK2FJUH.js');
|
|
110
110
|
|
|
111
111
|
|
|
112
|
-
var
|
|
112
|
+
var _chunkYDV7OQMNjs = require('./chunk-YDV7OQMN.js');
|
|
113
113
|
|
|
114
114
|
|
|
115
|
-
var
|
|
115
|
+
var _chunkQKALACBCjs = require('./chunk-QKALACBC.js');
|
|
116
116
|
|
|
117
117
|
|
|
118
118
|
var _chunk3IZ3O4OKjs = require('./chunk-3IZ3O4OK.js');
|
|
119
119
|
|
|
120
120
|
|
|
121
|
-
var
|
|
121
|
+
var _chunkKJPUYQEZjs = require('./chunk-KJPUYQEZ.js');
|
|
122
122
|
|
|
123
123
|
|
|
124
124
|
|
package/dist/index.mjs
CHANGED
|
@@ -46,18 +46,24 @@ 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";
|
|
52
55
|
import {
|
|
53
|
-
|
|
54
|
-
} from "./chunk-
|
|
56
|
+
LARGE_BUFFER
|
|
57
|
+
} from "./chunk-VBPOZVKY.mjs";
|
|
55
58
|
import {
|
|
56
59
|
tsdownExecutorFn
|
|
57
60
|
} from "./chunk-UF3YMASN.mjs";
|
|
58
61
|
import {
|
|
59
|
-
|
|
60
|
-
} from "./chunk-
|
|
62
|
+
typiaExecutorFn
|
|
63
|
+
} from "./chunk-2KNHEXJQ.mjs";
|
|
64
|
+
import {
|
|
65
|
+
cargoFormatExecutor
|
|
66
|
+
} from "./chunk-YILBFUCI.mjs";
|
|
61
67
|
import {
|
|
62
68
|
getRegistryVersion
|
|
63
69
|
} from "./chunk-XUYTELRS.mjs";
|
|
@@ -66,23 +72,17 @@ import {
|
|
|
66
72
|
} from "./chunk-OA6GD45B.mjs";
|
|
67
73
|
import "./chunk-N2P34ZQV.mjs";
|
|
68
74
|
import {
|
|
69
|
-
|
|
70
|
-
} from "./chunk-
|
|
75
|
+
cargoBuildExecutor
|
|
76
|
+
} from "./chunk-RSFH5OLL.mjs";
|
|
71
77
|
import {
|
|
72
78
|
cargoCheckExecutor
|
|
73
79
|
} from "./chunk-P4ZEGEQX.mjs";
|
|
74
|
-
import {
|
|
75
|
-
cargoClippyExecutor
|
|
76
|
-
} from "./chunk-57LRWY5U.mjs";
|
|
77
80
|
import {
|
|
78
81
|
cargoDocExecutor
|
|
79
82
|
} from "./chunk-7AXJ27FU.mjs";
|
|
80
83
|
import {
|
|
81
|
-
|
|
82
|
-
} from "./chunk-
|
|
83
|
-
import {
|
|
84
|
-
cargoBuildExecutor
|
|
85
|
-
} from "./chunk-RSFH5OLL.mjs";
|
|
84
|
+
cargoClippyExecutor
|
|
85
|
+
} from "./chunk-57LRWY5U.mjs";
|
|
86
86
|
import {
|
|
87
87
|
pnpmCatalogUpdate
|
|
88
88
|
} from "./chunk-JB4KCMSB.mjs";
|
|
@@ -98,27 +98,27 @@ import {
|
|
|
98
98
|
runProcess
|
|
99
99
|
} from "./chunk-XK3FSWMA.mjs";
|
|
100
100
|
import "./chunk-RLIZVCIN.mjs";
|
|
101
|
-
import {
|
|
102
|
-
nodeLibraryGeneratorFn
|
|
103
|
-
} from "./chunk-Q6OBRMZG.mjs";
|
|
104
101
|
import {
|
|
105
102
|
presetGeneratorFn
|
|
106
103
|
} from "./chunk-QDZUYDVM.mjs";
|
|
104
|
+
import {
|
|
105
|
+
neutralLibraryGeneratorFn
|
|
106
|
+
} from "./chunk-APSDUSBR.mjs";
|
|
107
|
+
import {
|
|
108
|
+
nodeLibraryGeneratorFn
|
|
109
|
+
} from "./chunk-Q6OBRMZG.mjs";
|
|
107
110
|
import {
|
|
108
111
|
releaseVersionGeneratorFn
|
|
109
112
|
} from "./chunk-TNAEFYVH.mjs";
|
|
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
|
-
|
|
121
|
-
} from "./chunk-
|
|
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
|
|
4
|
+
var _chunkRTFMVX72js = require('../../../chunk-RTFMVX72.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 = _chunkRTFMVX72js.createNodes; exports.name = _chunkRTFMVX72js.name;
|
|
@@ -3,6 +3,9 @@ import { CreateNodes } from '@nx/devkit';
|
|
|
3
3
|
declare const name = "storm-software/typescript";
|
|
4
4
|
interface TypeScriptPluginOptions {
|
|
5
5
|
includeApps?: boolean;
|
|
6
|
+
enableKnip?: boolean;
|
|
7
|
+
enableMarkdownlint?: boolean;
|
|
8
|
+
enableEslint?: boolean;
|
|
6
9
|
}
|
|
7
10
|
declare const createNodes: CreateNodes<TypeScriptPluginOptions>;
|
|
8
11
|
|
|
@@ -3,6 +3,9 @@ import { CreateNodes } from '@nx/devkit';
|
|
|
3
3
|
declare const name = "storm-software/typescript";
|
|
4
4
|
interface TypeScriptPluginOptions {
|
|
5
5
|
includeApps?: boolean;
|
|
6
|
+
enableKnip?: boolean;
|
|
7
|
+
enableMarkdownlint?: boolean;
|
|
8
|
+
enableEslint?: boolean;
|
|
6
9
|
}
|
|
7
10
|
declare const createNodes: CreateNodes<TypeScriptPluginOptions>;
|
|
8
11
|
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkRTFMVX72js = require('../../../chunk-RTFMVX72.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 = _chunkRTFMVX72js.createNodes; exports.name = _chunkRTFMVX72js.name;
|
package/package.json
CHANGED