@storm-software/workspace-tools 1.264.25 → 1.264.26
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 +7 -0
- package/README.md +1 -1
- package/dist/{chunk-S6XMIUUO.js → chunk-3JFGESR3.js} +5 -13
- package/dist/{chunk-RLMSLHWY.mjs → chunk-JFIIKAFU.mjs} +5 -13
- package/dist/executors.js +10 -10
- package/dist/executors.mjs +13 -13
- package/dist/generators.js +6 -6
- package/dist/generators.mjs +6 -6
- package/dist/index.js +16 -16
- package/dist/index.mjs +19 -19
- package/dist/src/executors/esbuild/executor.js +2 -2
- package/dist/src/executors/esbuild/executor.mjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Workspace Tools
|
|
4
4
|
|
|
5
|
+
## [1.264.26](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.264.26) (2025-04-08)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate README markdown files
|
|
10
|
+
([082eec9a5](https://github.com/storm-software/storm-ops/commit/082eec9a5))
|
|
11
|
+
|
|
5
12
|
## [1.264.25](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.264.25) (2025-04-07)
|
|
6
13
|
|
|
7
14
|
### 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 -->
|
|
@@ -874,8 +874,8 @@ var getEntryPoints = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async
|
|
|
874
874
|
entryPoints.push(...Object.entries(entry).map(([key, value]) => {
|
|
875
875
|
if (typeof value === "string") {
|
|
876
876
|
return {
|
|
877
|
-
in:
|
|
878
|
-
out:
|
|
877
|
+
in: value,
|
|
878
|
+
out: key
|
|
879
879
|
};
|
|
880
880
|
} else {
|
|
881
881
|
return {
|
|
@@ -1126,17 +1126,9 @@ async function generatePackageJson(context2) {
|
|
|
1126
1126
|
packageJson.exports ??= {};
|
|
1127
1127
|
packageJson.exports["./package.json"] ??= "./package.json";
|
|
1128
1128
|
packageJson.exports["."] ??= `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/index.js`;
|
|
1129
|
-
const entryPoints
|
|
1130
|
-
{
|
|
1131
|
-
|
|
1132
|
-
out: "./src/index.ts"
|
|
1133
|
-
}
|
|
1134
|
-
];
|
|
1135
|
-
if (context2.options.entryPoints) {
|
|
1136
|
-
for (const entryPoint of entryPoints) {
|
|
1137
|
-
const split = entryPoint.out.split(".");
|
|
1138
|
-
split.pop();
|
|
1139
|
-
const entry = split.join(".").replaceAll("\\", "/");
|
|
1129
|
+
for (const entryPoint of context2.options.entryPoints) {
|
|
1130
|
+
if (entryPoint.out) {
|
|
1131
|
+
const entry = entryPoint.out.replaceAll("\\", "/").replaceAll(/^(\.\/)*/, "").replace(/\.([cm])?[jt]s(x)?$/, "");
|
|
1140
1132
|
packageJson.exports[`./${entry}`] ??= `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/${entry}.js`;
|
|
1141
1133
|
}
|
|
1142
1134
|
}
|
|
@@ -875,8 +875,8 @@ var getEntryPoints = /* @__PURE__ */ __name(async (config, projectRoot, sourceRo
|
|
|
875
875
|
entryPoints.push(...Object.entries(entry).map(([key, value]) => {
|
|
876
876
|
if (typeof value === "string") {
|
|
877
877
|
return {
|
|
878
|
-
in:
|
|
879
|
-
out:
|
|
878
|
+
in: value,
|
|
879
|
+
out: key
|
|
880
880
|
};
|
|
881
881
|
} else {
|
|
882
882
|
return {
|
|
@@ -1127,17 +1127,9 @@ async function generatePackageJson(context2) {
|
|
|
1127
1127
|
packageJson.exports ??= {};
|
|
1128
1128
|
packageJson.exports["./package.json"] ??= "./package.json";
|
|
1129
1129
|
packageJson.exports["."] ??= `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/index.js`;
|
|
1130
|
-
const entryPoints
|
|
1131
|
-
{
|
|
1132
|
-
|
|
1133
|
-
out: "./src/index.ts"
|
|
1134
|
-
}
|
|
1135
|
-
];
|
|
1136
|
-
if (context2.options.entryPoints) {
|
|
1137
|
-
for (const entryPoint of entryPoints) {
|
|
1138
|
-
const split = entryPoint.out.split(".");
|
|
1139
|
-
split.pop();
|
|
1140
|
-
const entry = split.join(".").replaceAll("\\", "/");
|
|
1130
|
+
for (const entryPoint of context2.options.entryPoints) {
|
|
1131
|
+
if (entryPoint.out) {
|
|
1132
|
+
const entry = entryPoint.out.replaceAll("\\", "/").replaceAll(/^(\.\/)*/, "").replace(/\.([cm])?[jt]s(x)?$/, "");
|
|
1141
1133
|
packageJson.exports[`./${entry}`] ??= `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/${entry}.js`;
|
|
1142
1134
|
}
|
|
1143
1135
|
}
|
package/dist/executors.js
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-7VDOGZYO.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
var _chunkQPJ4XTDXjs = require('./chunk-QPJ4XTDX.js');
|
|
5
|
+
|
|
6
|
+
|
|
4
7
|
var _chunkJCJHSN67js = require('./chunk-JCJHSN67.js');
|
|
5
8
|
|
|
6
9
|
|
|
@@ -10,28 +13,25 @@ var _chunk5DQCVP4Njs = require('./chunk-5DQCVP4N.js');
|
|
|
10
13
|
var _chunk26KLH7BIjs = require('./chunk-26KLH7BI.js');
|
|
11
14
|
|
|
12
15
|
|
|
13
|
-
var
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
var _chunkZ2GBHTLHjs = require('./chunk-Z2GBHTLH.js');
|
|
16
|
+
var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
var
|
|
19
|
+
var _chunk3JFGESR3js = require('./chunk-3JFGESR3.js');
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
var
|
|
22
|
+
var _chunkGJQKCDGCjs = require('./chunk-GJQKCDGC.js');
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
var
|
|
25
|
+
var _chunk7YVMI4XMjs = require('./chunk-7YVMI4XM.js');
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
var _chunkE4TBRQDJjs = require('./chunk-E4TBRQDJ.js');
|
|
29
29
|
|
|
30
30
|
|
|
31
|
-
var
|
|
31
|
+
var _chunkZ2GBHTLHjs = require('./chunk-Z2GBHTLH.js');
|
|
32
32
|
|
|
33
33
|
|
|
34
|
-
var
|
|
34
|
+
var _chunkLRLMU4QVjs = require('./chunk-LRLMU4QV.js');
|
|
35
35
|
require('./chunk-CUPARBOS.js');
|
|
36
36
|
require('./chunk-ULBTYC2B.js');
|
|
37
37
|
require('./chunk-ZMFVKBRM.js');
|
|
@@ -53,4 +53,4 @@ require('./chunk-3GQAWCBQ.js');
|
|
|
53
53
|
|
|
54
54
|
|
|
55
55
|
|
|
56
|
-
exports.LARGE_BUFFER = _chunkGJQKCDGCjs.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkLRLMU4QVjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkE4TBRQDJjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunk7YVMI4XMjs.cargoClippyExecutor; exports.cargoDocExecutor = _chunkZ2GBHTLHjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkQPJ4XTDXjs.cargoFormatExecutor; exports.esbuildExecutorFn =
|
|
56
|
+
exports.LARGE_BUFFER = _chunkGJQKCDGCjs.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkLRLMU4QVjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkE4TBRQDJjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunk7YVMI4XMjs.cargoClippyExecutor; exports.cargoDocExecutor = _chunkZ2GBHTLHjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkQPJ4XTDXjs.cargoFormatExecutor; exports.esbuildExecutorFn = _chunk3JFGESR3js.esbuildExecutorFn; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.sizeLimitExecutorFn = _chunkJCJHSN67js.sizeLimitExecutorFn; exports.typiaExecutorFn = _chunk5DQCVP4Njs.typiaExecutorFn; exports.unbuildExecutorFn = _chunk26KLH7BIjs.unbuildExecutorFn;
|
package/dist/executors.mjs
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import "./chunk-BLX5SLPC.mjs";
|
|
2
|
+
import {
|
|
3
|
+
cargoFormatExecutor
|
|
4
|
+
} from "./chunk-UMFP6PYU.mjs";
|
|
2
5
|
import {
|
|
3
6
|
sizeLimitExecutorFn
|
|
4
7
|
} from "./chunk-CD3W3HIC.mjs";
|
|
@@ -8,30 +11,27 @@ import {
|
|
|
8
11
|
import {
|
|
9
12
|
unbuildExecutorFn
|
|
10
13
|
} from "./chunk-32XQSY3C.mjs";
|
|
11
|
-
import {
|
|
12
|
-
LARGE_BUFFER
|
|
13
|
-
} from "./chunk-BMNXBEWE.mjs";
|
|
14
|
-
import {
|
|
15
|
-
cargoDocExecutor
|
|
16
|
-
} from "./chunk-CIHS3V6E.mjs";
|
|
17
14
|
import {
|
|
18
15
|
getRegistryVersion
|
|
19
16
|
} from "./chunk-3PWCELL5.mjs";
|
|
20
17
|
import {
|
|
21
18
|
esbuildExecutorFn
|
|
22
|
-
} from "./chunk-
|
|
19
|
+
} from "./chunk-JFIIKAFU.mjs";
|
|
23
20
|
import {
|
|
24
|
-
|
|
25
|
-
} from "./chunk-
|
|
21
|
+
LARGE_BUFFER
|
|
22
|
+
} from "./chunk-BMNXBEWE.mjs";
|
|
23
|
+
import {
|
|
24
|
+
cargoClippyExecutor
|
|
25
|
+
} from "./chunk-FCGFBNCJ.mjs";
|
|
26
26
|
import {
|
|
27
27
|
cargoCheckExecutor
|
|
28
28
|
} from "./chunk-IQQERPIV.mjs";
|
|
29
29
|
import {
|
|
30
|
-
|
|
31
|
-
} from "./chunk-
|
|
30
|
+
cargoDocExecutor
|
|
31
|
+
} from "./chunk-CIHS3V6E.mjs";
|
|
32
32
|
import {
|
|
33
|
-
|
|
34
|
-
} from "./chunk-
|
|
33
|
+
cargoBuildExecutor
|
|
34
|
+
} from "./chunk-VTRSAQHO.mjs";
|
|
35
35
|
import "./chunk-AD4BVP7F.mjs";
|
|
36
36
|
import "./chunk-JIAGNEII.mjs";
|
|
37
37
|
import "./chunk-7ENGREV2.mjs";
|
package/dist/generators.js
CHANGED
|
@@ -1,18 +1,12 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-INERRJ6Q.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var _chunkACBRXFBBjs = require('./chunk-ACBRXFBB.js');
|
|
5
|
-
|
|
6
|
-
|
|
7
4
|
var _chunkUSJX4BPDjs = require('./chunk-USJX4BPD.js');
|
|
8
5
|
|
|
9
6
|
|
|
10
7
|
var _chunkDNYOACHDjs = require('./chunk-DNYOACHD.js');
|
|
11
8
|
|
|
12
9
|
|
|
13
|
-
var _chunkIPBHTVKWjs = require('./chunk-IPBHTVKW.js');
|
|
14
|
-
|
|
15
|
-
|
|
16
10
|
var _chunkN4STCLGJjs = require('./chunk-N4STCLGJ.js');
|
|
17
11
|
|
|
18
12
|
|
|
@@ -20,6 +14,12 @@ var _chunk3IZ3O4OKjs = require('./chunk-3IZ3O4OK.js');
|
|
|
20
14
|
|
|
21
15
|
|
|
22
16
|
var _chunkZGMV4YJLjs = require('./chunk-ZGMV4YJL.js');
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
var _chunkACBRXFBBjs = require('./chunk-ACBRXFBB.js');
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
var _chunkIPBHTVKWjs = require('./chunk-IPBHTVKW.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,16 +1,10 @@
|
|
|
1
1
|
import "./chunk-RLIZVCIN.mjs";
|
|
2
|
-
import {
|
|
3
|
-
nodeLibraryGeneratorFn
|
|
4
|
-
} from "./chunk-JWFYDYKI.mjs";
|
|
5
2
|
import {
|
|
6
3
|
presetGeneratorFn
|
|
7
4
|
} from "./chunk-AVC6Y5IR.mjs";
|
|
8
5
|
import {
|
|
9
6
|
releaseVersionGeneratorFn
|
|
10
7
|
} from "./chunk-P7UUSOFW.mjs";
|
|
11
|
-
import {
|
|
12
|
-
browserLibraryGeneratorFn
|
|
13
|
-
} from "./chunk-MMPXE2KD.mjs";
|
|
14
8
|
import {
|
|
15
9
|
configSchemaGeneratorFn
|
|
16
10
|
} from "./chunk-KQMGKHXU.mjs";
|
|
@@ -20,6 +14,12 @@ import {
|
|
|
20
14
|
import {
|
|
21
15
|
neutralLibraryGeneratorFn
|
|
22
16
|
} from "./chunk-PHVGSPP3.mjs";
|
|
17
|
+
import {
|
|
18
|
+
nodeLibraryGeneratorFn
|
|
19
|
+
} from "./chunk-JWFYDYKI.mjs";
|
|
20
|
+
import {
|
|
21
|
+
browserLibraryGeneratorFn
|
|
22
|
+
} from "./chunk-MMPXE2KD.mjs";
|
|
23
23
|
import "./chunk-YZLAY7R4.mjs";
|
|
24
24
|
import "./chunk-EK75QNMS.mjs";
|
|
25
25
|
import "./chunk-HUVBVDJ7.mjs";
|
package/dist/index.js
CHANGED
|
@@ -48,6 +48,9 @@ var _chunkGKL4BY2Yjs = require('./chunk-GKL4BY2Y.js');
|
|
|
48
48
|
require('./chunk-7VDOGZYO.js');
|
|
49
49
|
|
|
50
50
|
|
|
51
|
+
var _chunkQPJ4XTDXjs = require('./chunk-QPJ4XTDX.js');
|
|
52
|
+
|
|
53
|
+
|
|
51
54
|
var _chunkJCJHSN67js = require('./chunk-JCJHSN67.js');
|
|
52
55
|
|
|
53
56
|
|
|
@@ -57,28 +60,25 @@ var _chunk5DQCVP4Njs = require('./chunk-5DQCVP4N.js');
|
|
|
57
60
|
var _chunk26KLH7BIjs = require('./chunk-26KLH7BI.js');
|
|
58
61
|
|
|
59
62
|
|
|
60
|
-
var
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
var _chunkZ2GBHTLHjs = require('./chunk-Z2GBHTLH.js');
|
|
63
|
+
var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
|
|
64
64
|
|
|
65
65
|
|
|
66
|
-
var
|
|
66
|
+
var _chunk3JFGESR3js = require('./chunk-3JFGESR3.js');
|
|
67
67
|
|
|
68
68
|
|
|
69
|
-
var
|
|
69
|
+
var _chunkGJQKCDGCjs = require('./chunk-GJQKCDGC.js');
|
|
70
70
|
|
|
71
71
|
|
|
72
|
-
var
|
|
72
|
+
var _chunk7YVMI4XMjs = require('./chunk-7YVMI4XM.js');
|
|
73
73
|
|
|
74
74
|
|
|
75
75
|
var _chunkE4TBRQDJjs = require('./chunk-E4TBRQDJ.js');
|
|
76
76
|
|
|
77
77
|
|
|
78
|
-
var
|
|
78
|
+
var _chunkZ2GBHTLHjs = require('./chunk-Z2GBHTLH.js');
|
|
79
79
|
|
|
80
80
|
|
|
81
|
-
var
|
|
81
|
+
var _chunkLRLMU4QVjs = require('./chunk-LRLMU4QV.js');
|
|
82
82
|
|
|
83
83
|
|
|
84
84
|
var _chunkCUPARBOSjs = require('./chunk-CUPARBOS.js');
|
|
@@ -96,18 +96,12 @@ var _chunkULBTYC2Bjs = require('./chunk-ULBTYC2B.js');
|
|
|
96
96
|
require('./chunk-INERRJ6Q.js');
|
|
97
97
|
|
|
98
98
|
|
|
99
|
-
var _chunkACBRXFBBjs = require('./chunk-ACBRXFBB.js');
|
|
100
|
-
|
|
101
|
-
|
|
102
99
|
var _chunkUSJX4BPDjs = require('./chunk-USJX4BPD.js');
|
|
103
100
|
|
|
104
101
|
|
|
105
102
|
var _chunkDNYOACHDjs = require('./chunk-DNYOACHD.js');
|
|
106
103
|
|
|
107
104
|
|
|
108
|
-
var _chunkIPBHTVKWjs = require('./chunk-IPBHTVKW.js');
|
|
109
|
-
|
|
110
|
-
|
|
111
105
|
var _chunkN4STCLGJjs = require('./chunk-N4STCLGJ.js');
|
|
112
106
|
|
|
113
107
|
|
|
@@ -117,6 +111,12 @@ var _chunk3IZ3O4OKjs = require('./chunk-3IZ3O4OK.js');
|
|
|
117
111
|
var _chunkZGMV4YJLjs = require('./chunk-ZGMV4YJL.js');
|
|
118
112
|
|
|
119
113
|
|
|
114
|
+
var _chunkACBRXFBBjs = require('./chunk-ACBRXFBB.js');
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
var _chunkIPBHTVKWjs = require('./chunk-IPBHTVKW.js');
|
|
118
|
+
|
|
119
|
+
|
|
120
120
|
|
|
121
121
|
|
|
122
122
|
|
|
@@ -282,4 +282,4 @@ require('./chunk-3GQAWCBQ.js');
|
|
|
282
282
|
|
|
283
283
|
|
|
284
284
|
|
|
285
|
-
exports.INVALID_CARGO_ARGS = _chunkULBTYC2Bjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkGJQKCDGCjs.LARGE_BUFFER; exports.LOCK_FILES = _chunkPK2SUBWIjs.LOCK_FILES; exports.NPM_LOCK_FILE = _chunkPK2SUBWIjs.NPM_LOCK_FILE; exports.NPM_LOCK_PATH = _chunkPK2SUBWIjs.NPM_LOCK_PATH; exports.PNPM_LOCK_FILE = _chunkPK2SUBWIjs.PNPM_LOCK_FILE; exports.PNPM_LOCK_PATH = _chunkPK2SUBWIjs.PNPM_LOCK_PATH; exports.PackageManagerTypes = _chunk7AXFMX2Tjs.PackageManagerTypes; exports.ProjectTagConstants = _chunk7YRW5HNXjs.ProjectTagConstants; exports.ProjectTagDistStyleValue = _chunk4NOLUAQNjs.ProjectTagDistStyleValue; exports.ProjectTagLanguageValue = _chunk4NOLUAQNjs.ProjectTagLanguageValue; exports.ProjectTagPlatformValue = _chunk4NOLUAQNjs.ProjectTagPlatformValue; exports.ProjectTagRegistryValue = _chunk4NOLUAQNjs.ProjectTagRegistryValue; exports.ProjectTagTypeValue = _chunk4NOLUAQNjs.ProjectTagTypeValue; exports.ProjectTagVariant = _chunk4NOLUAQNjs.ProjectTagVariant; exports.YARN_LOCK_FILE = _chunkPK2SUBWIjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkPK2SUBWIjs.YARN_LOCK_PATH; exports.addPluginProjectTag = _chunk7YRW5HNXjs.addPluginProjectTag; exports.addProjectTag = _chunk7YRW5HNXjs.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunkAC5SI4YZjs.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunkIPBHTVKWjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkULBTYC2Bjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk6QO3KMZAjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkLRLMU4QVjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkE4TBRQDJjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunk7YVMI4XMjs.cargoClippyExecutor; exports.cargoCommand = _chunkULBTYC2Bjs.cargoCommand; exports.cargoCommandSync = _chunkULBTYC2Bjs.cargoCommandSync; exports.cargoDocExecutor = _chunkZ2GBHTLHjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkQPJ4XTDXjs.cargoFormatExecutor; exports.cargoMetadata = _chunkULBTYC2Bjs.cargoMetadata; exports.cargoRunCommand = _chunkULBTYC2Bjs.cargoRunCommand; exports.childProcess = _chunkULBTYC2Bjs.childProcess; exports.configSchemaGeneratorFn = _chunkN4STCLGJjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkDHGZTMNDjs.createCliOptions; exports.createProjectTsConfigJson = _chunkRBU35LQWjs.createProjectTsConfigJson; exports.esbuildExecutorFn =
|
|
285
|
+
exports.INVALID_CARGO_ARGS = _chunkULBTYC2Bjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkGJQKCDGCjs.LARGE_BUFFER; exports.LOCK_FILES = _chunkPK2SUBWIjs.LOCK_FILES; exports.NPM_LOCK_FILE = _chunkPK2SUBWIjs.NPM_LOCK_FILE; exports.NPM_LOCK_PATH = _chunkPK2SUBWIjs.NPM_LOCK_PATH; exports.PNPM_LOCK_FILE = _chunkPK2SUBWIjs.PNPM_LOCK_FILE; exports.PNPM_LOCK_PATH = _chunkPK2SUBWIjs.PNPM_LOCK_PATH; exports.PackageManagerTypes = _chunk7AXFMX2Tjs.PackageManagerTypes; exports.ProjectTagConstants = _chunk7YRW5HNXjs.ProjectTagConstants; exports.ProjectTagDistStyleValue = _chunk4NOLUAQNjs.ProjectTagDistStyleValue; exports.ProjectTagLanguageValue = _chunk4NOLUAQNjs.ProjectTagLanguageValue; exports.ProjectTagPlatformValue = _chunk4NOLUAQNjs.ProjectTagPlatformValue; exports.ProjectTagRegistryValue = _chunk4NOLUAQNjs.ProjectTagRegistryValue; exports.ProjectTagTypeValue = _chunk4NOLUAQNjs.ProjectTagTypeValue; exports.ProjectTagVariant = _chunk4NOLUAQNjs.ProjectTagVariant; exports.YARN_LOCK_FILE = _chunkPK2SUBWIjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkPK2SUBWIjs.YARN_LOCK_PATH; exports.addPluginProjectTag = _chunk7YRW5HNXjs.addPluginProjectTag; exports.addProjectTag = _chunk7YRW5HNXjs.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunkAC5SI4YZjs.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunkIPBHTVKWjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkULBTYC2Bjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk6QO3KMZAjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkLRLMU4QVjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkE4TBRQDJjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunk7YVMI4XMjs.cargoClippyExecutor; exports.cargoCommand = _chunkULBTYC2Bjs.cargoCommand; exports.cargoCommandSync = _chunkULBTYC2Bjs.cargoCommandSync; exports.cargoDocExecutor = _chunkZ2GBHTLHjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkQPJ4XTDXjs.cargoFormatExecutor; exports.cargoMetadata = _chunkULBTYC2Bjs.cargoMetadata; exports.cargoRunCommand = _chunkULBTYC2Bjs.cargoRunCommand; exports.childProcess = _chunkULBTYC2Bjs.childProcess; exports.configSchemaGeneratorFn = _chunkN4STCLGJjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkDHGZTMNDjs.createCliOptions; exports.createProjectTsConfigJson = _chunkRBU35LQWjs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunk3JFGESR3js.esbuildExecutorFn; exports.eslintVersion = _chunkHI4G4OOGjs.eslintVersion; exports.formatProjectTag = _chunk7YRW5HNXjs.formatProjectTag; exports.getLockFileDependencies = _chunkPK2SUBWIjs.getLockFileDependencies; exports.getLockFileName = _chunkPK2SUBWIjs.getLockFileName; exports.getLockFileNodes = _chunkPK2SUBWIjs.getLockFileNodes; exports.getOutputPath = _chunkRBU35LQWjs.getOutputPath; exports.getPackageInfo = _chunk7AXFMX2Tjs.getPackageInfo; exports.getProjectConfigFromProjectJsonPath = _chunkUF6KFXG5js.getProjectConfigFromProjectJsonPath; exports.getProjectConfigFromProjectRoot = _chunkUF6KFXG5js.getProjectConfigFromProjectRoot; exports.getProjectConfiguration = _chunkGKL4BY2Yjs.getProjectConfiguration; exports.getProjectConfigurations = _chunkGKL4BY2Yjs.getProjectConfigurations; exports.getProjectPlatform = _chunkUF6KFXG5js.getProjectPlatform; exports.getProjectRoot = _chunkUF6KFXG5js.getProjectRoot; exports.getProjectTag = _chunk7YRW5HNXjs.getProjectTag; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.getTypiaTransform = _chunkXITP2BX2js.getTypiaTransform; exports.hasProjectTag = _chunk7YRW5HNXjs.hasProjectTag; exports.initGenerator = _chunk3IZ3O4OKjs.initGenerator; exports.isEqualProjectTag = _chunk7YRW5HNXjs.isEqualProjectTag; exports.isExternal = _chunkULBTYC2Bjs.isExternal; exports.lintStagedVersion = _chunkHI4G4OOGjs.lintStagedVersion; exports.lockFileExists = _chunkPK2SUBWIjs.lockFileExists; exports.modifyCargoNestedTable = _chunkZMFVKBRMjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkZMFVKBRMjs.modifyCargoTable; exports.neutralLibraryGeneratorFn = _chunkZGMV4YJLjs.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunkACBRXFBBjs.nodeLibraryGeneratorFn; exports.nodeVersion = _chunkHI4G4OOGjs.nodeVersion; exports.normalizeOptions = _chunkRBU35LQWjs.normalizeOptions; exports.nxVersion = _chunkHI4G4OOGjs.nxVersion; exports.parseCargoToml = _chunkZMFVKBRMjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkZMFVKBRMjs.parseCargoTomlWithTree; exports.pnpmCatalogUpdate = _chunkCUPARBOSjs.pnpmCatalogUpdate; exports.pnpmVersion = _chunkHI4G4OOGjs.pnpmVersion; exports.presetGeneratorFn = _chunkUSJX4BPDjs.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkHI4G4OOGjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkHI4G4OOGjs.prettierPrismaVersion; exports.prettierVersion = _chunkHI4G4OOGjs.prettierVersion; exports.releaseVersionGeneratorFn = _chunkDNYOACHDjs.releaseVersionGeneratorFn; exports.runProcess = _chunkULBTYC2Bjs.runProcess; exports.semanticReleaseVersion = _chunkHI4G4OOGjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunk7YRW5HNXjs.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunkJCJHSN67js.sizeLimitExecutorFn; exports.stringifyCargoToml = _chunkZMFVKBRMjs.stringifyCargoToml; exports.swcCliVersion = _chunkHI4G4OOGjs.swcCliVersion; exports.swcCoreVersion = _chunkHI4G4OOGjs.swcCoreVersion; exports.swcHelpersVersion = _chunkHI4G4OOGjs.swcHelpersVersion; exports.swcNodeVersion = _chunkHI4G4OOGjs.swcNodeVersion; exports.tsLibVersion = _chunkHI4G4OOGjs.tsLibVersion; exports.tsupVersion = _chunkHI4G4OOGjs.tsupVersion; exports.typeScriptLibraryGeneratorFn = _chunkRBU35LQWjs.typeScriptLibraryGeneratorFn; exports.typesNodeVersion = _chunkHI4G4OOGjs.typesNodeVersion; exports.typescriptBuildExecutorSchema = _chunkIWCQL3AQjs.typescript_build_executor_untyped_default; exports.typescriptLibraryGeneratorSchema = _chunk7O34DHUGjs.typescript_library_generator_untyped_default; exports.typescriptVersion = _chunkHI4G4OOGjs.typescriptVersion; exports.typiaExecutorFn = _chunk5DQCVP4Njs.typiaExecutorFn; exports.unbuildExecutorFn = _chunk26KLH7BIjs.unbuildExecutorFn; exports.verdaccioVersion = _chunkHI4G4OOGjs.verdaccioVersion; exports.withRunExecutor = _chunkP6PFHXHQjs.withRunExecutor; exports.withRunGenerator = _chunkNQ4W3N7Ojs.withRunGenerator;
|
package/dist/index.mjs
CHANGED
|
@@ -46,6 +46,9 @@ import {
|
|
|
46
46
|
getProjectConfigurations
|
|
47
47
|
} from "./chunk-YBDZ7EWU.mjs";
|
|
48
48
|
import "./chunk-BLX5SLPC.mjs";
|
|
49
|
+
import {
|
|
50
|
+
cargoFormatExecutor
|
|
51
|
+
} from "./chunk-UMFP6PYU.mjs";
|
|
49
52
|
import {
|
|
50
53
|
sizeLimitExecutorFn
|
|
51
54
|
} from "./chunk-CD3W3HIC.mjs";
|
|
@@ -55,30 +58,27 @@ import {
|
|
|
55
58
|
import {
|
|
56
59
|
unbuildExecutorFn
|
|
57
60
|
} from "./chunk-32XQSY3C.mjs";
|
|
58
|
-
import {
|
|
59
|
-
LARGE_BUFFER
|
|
60
|
-
} from "./chunk-BMNXBEWE.mjs";
|
|
61
|
-
import {
|
|
62
|
-
cargoDocExecutor
|
|
63
|
-
} from "./chunk-CIHS3V6E.mjs";
|
|
64
61
|
import {
|
|
65
62
|
getRegistryVersion
|
|
66
63
|
} from "./chunk-3PWCELL5.mjs";
|
|
67
64
|
import {
|
|
68
65
|
esbuildExecutorFn
|
|
69
|
-
} from "./chunk-
|
|
66
|
+
} from "./chunk-JFIIKAFU.mjs";
|
|
70
67
|
import {
|
|
71
|
-
|
|
72
|
-
} from "./chunk-
|
|
68
|
+
LARGE_BUFFER
|
|
69
|
+
} from "./chunk-BMNXBEWE.mjs";
|
|
70
|
+
import {
|
|
71
|
+
cargoClippyExecutor
|
|
72
|
+
} from "./chunk-FCGFBNCJ.mjs";
|
|
73
73
|
import {
|
|
74
74
|
cargoCheckExecutor
|
|
75
75
|
} from "./chunk-IQQERPIV.mjs";
|
|
76
76
|
import {
|
|
77
|
-
|
|
78
|
-
} from "./chunk-
|
|
77
|
+
cargoDocExecutor
|
|
78
|
+
} from "./chunk-CIHS3V6E.mjs";
|
|
79
79
|
import {
|
|
80
|
-
|
|
81
|
-
} from "./chunk-
|
|
80
|
+
cargoBuildExecutor
|
|
81
|
+
} from "./chunk-VTRSAQHO.mjs";
|
|
82
82
|
import {
|
|
83
83
|
pnpmCatalogUpdate
|
|
84
84
|
} from "./chunk-AD4BVP7F.mjs";
|
|
@@ -94,18 +94,12 @@ import {
|
|
|
94
94
|
runProcess
|
|
95
95
|
} from "./chunk-JIAGNEII.mjs";
|
|
96
96
|
import "./chunk-RLIZVCIN.mjs";
|
|
97
|
-
import {
|
|
98
|
-
nodeLibraryGeneratorFn
|
|
99
|
-
} from "./chunk-JWFYDYKI.mjs";
|
|
100
97
|
import {
|
|
101
98
|
presetGeneratorFn
|
|
102
99
|
} from "./chunk-AVC6Y5IR.mjs";
|
|
103
100
|
import {
|
|
104
101
|
releaseVersionGeneratorFn
|
|
105
102
|
} from "./chunk-P7UUSOFW.mjs";
|
|
106
|
-
import {
|
|
107
|
-
browserLibraryGeneratorFn
|
|
108
|
-
} from "./chunk-MMPXE2KD.mjs";
|
|
109
103
|
import {
|
|
110
104
|
configSchemaGeneratorFn
|
|
111
105
|
} from "./chunk-KQMGKHXU.mjs";
|
|
@@ -115,6 +109,12 @@ import {
|
|
|
115
109
|
import {
|
|
116
110
|
neutralLibraryGeneratorFn
|
|
117
111
|
} from "./chunk-PHVGSPP3.mjs";
|
|
112
|
+
import {
|
|
113
|
+
nodeLibraryGeneratorFn
|
|
114
|
+
} from "./chunk-JWFYDYKI.mjs";
|
|
115
|
+
import {
|
|
116
|
+
browserLibraryGeneratorFn
|
|
117
|
+
} from "./chunk-MMPXE2KD.mjs";
|
|
118
118
|
import {
|
|
119
119
|
createProjectTsConfigJson,
|
|
120
120
|
getOutputPath,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunk3JFGESR3js = require('../../../chunk-3JFGESR3.js');
|
|
5
5
|
require('../../../chunk-P6PFHXHQ.js');
|
|
6
6
|
require('../../../chunk-UALZJZUK.js');
|
|
7
7
|
require('../../../chunk-SKMT7WD5.js');
|
|
@@ -11,4 +11,4 @@ require('../../../chunk-3GQAWCBQ.js');
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
exports.default =
|
|
14
|
+
exports.default = _chunk3JFGESR3js.executor_default; exports.esbuildExecutorFn = _chunk3JFGESR3js.esbuildExecutorFn;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/workspace-tools",
|
|
3
|
-
"version": "1.264.
|
|
3
|
+
"version": "1.264.26",
|
|
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",
|