@storm-software/workspace-tools 1.239.1 → 1.239.2
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 +14 -0
- package/README.md +1 -1
- package/dist/{chunk-AMWYOBNS.js → chunk-FDQROX6T.js} +14 -14
- package/dist/{chunk-R4KMDDFL.mjs → chunk-ODVU2NXI.mjs} +13 -13
- package/dist/executors.js +7 -7
- package/dist/executors.mjs +9 -9
- package/dist/index.js +7 -7
- package/dist/index.mjs +9 -9
- package/dist/src/executors/unbuild/executor.js +2 -2
- package/dist/src/executors/unbuild/executor.mjs +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## 1.239.2 (2025-01-22)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **config-tools:** Resolved issue applying entire token parameters object ([5ccf3881](https://github.com/storm-software/storm-ops/commit/5ccf3881))
|
|
6
|
+
|
|
7
|
+
### 🧱 Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated prettier to 0.30.1
|
|
10
|
+
- Updated esbuild to 0.21.1
|
|
11
|
+
- Updated unbuild to 0.30.2
|
|
12
|
+
- Updated unbuild to 0.30.2
|
|
13
|
+
- Updated tsdown to 0.22.1
|
|
14
|
+
|
|
1
15
|
## 1.239.1 (2025-01-22)
|
|
2
16
|
|
|
3
17
|
### Bug Fixes
|
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 -->
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
2
|
|
|
3
3
|
var _chunkB2TMWHSQjs = require('./chunk-B2TMWHSQ.js');
|
|
4
4
|
|
|
@@ -16,8 +16,14 @@ var _defu = require('defu');
|
|
|
16
16
|
var _jiti = require('jiti');
|
|
17
17
|
async function unbuildExecutorFn(options, context, config) {
|
|
18
18
|
_chunkM3X4P6ATjs.writeInfo.call(void 0, "\u{1F4E6} Running Storm Unbuild executor on the workspace", config);
|
|
19
|
-
if (!_optionalChain([context, 'access', _ => _.projectsConfigurations, 'optionalAccess', _2 => _2.projects]) || !context.projectName || !context.projectsConfigurations.projects[context.projectName]
|
|
20
|
-
throw new Error("The Build process failed because the context is not valid. Please run this command from a workspace.");
|
|
19
|
+
if (!_optionalChain([context, 'access', _ => _.projectsConfigurations, 'optionalAccess', _2 => _2.projects]) || !context.projectName || !context.projectsConfigurations.projects[context.projectName]) {
|
|
20
|
+
throw new Error("The Build process failed because the context is not valid. Please run this command from a workspace root directory.");
|
|
21
|
+
}
|
|
22
|
+
if (!context.projectsConfigurations.projects[context.projectName].root) {
|
|
23
|
+
throw new Error("The Build process failed because the project root is not valid. Please run this command from a workspace root directory.");
|
|
24
|
+
}
|
|
25
|
+
if (!context.projectsConfigurations.projects[context.projectName].sourceRoot) {
|
|
26
|
+
throw new Error("The Build process failed because the project's source root is not valid. Please run this command from a workspace root directory.");
|
|
21
27
|
}
|
|
22
28
|
const jiti = _jiti.createJiti.call(void 0, config.workspaceRoot, {
|
|
23
29
|
fsCache: config.skipCache ? false : _chunkXCSSYTCUjs.joinPaths.call(void 0, config.directories.cache || "node_modules/.cache/storm", "jiti"),
|
|
@@ -26,11 +32,10 @@ async function unbuildExecutorFn(options, context, config) {
|
|
|
26
32
|
const stormUnbuild = await jiti.import(jiti.esmResolve("@storm-software/unbuild/build"));
|
|
27
33
|
await stormUnbuild.build(_defu.defu.call(void 0, {
|
|
28
34
|
...options,
|
|
29
|
-
projectRoot:
|
|
35
|
+
projectRoot: context.projectsConfigurations.projects[context.projectName].root,
|
|
30
36
|
projectName: context.projectName,
|
|
31
|
-
sourceRoot:
|
|
32
|
-
platform: options.platform
|
|
33
|
-
name: context.projectName
|
|
37
|
+
sourceRoot: context.projectsConfigurations.projects[context.projectName].sourceRoot,
|
|
38
|
+
platform: options.platform
|
|
34
39
|
}, {
|
|
35
40
|
stubOptions: {
|
|
36
41
|
jiti: {
|
|
@@ -40,20 +45,15 @@ async function unbuildExecutorFn(options, context, config) {
|
|
|
40
45
|
rollup: {
|
|
41
46
|
emitCJS: true,
|
|
42
47
|
watch: false,
|
|
43
|
-
cjsBridge: false,
|
|
44
48
|
dts: {
|
|
45
49
|
respectExternal: true
|
|
46
50
|
},
|
|
47
|
-
replace: {},
|
|
48
|
-
alias: {},
|
|
49
|
-
resolve: {},
|
|
50
|
-
json: {},
|
|
51
|
-
commonjs: {},
|
|
52
51
|
esbuild: {
|
|
53
52
|
target: options.target,
|
|
54
53
|
format: "esm",
|
|
55
54
|
platform: options.platform,
|
|
56
|
-
minify: options.minify,
|
|
55
|
+
minify: _nullishCoalesce(options.minify, () => ( !options.debug)),
|
|
56
|
+
sourcemap: _nullishCoalesce(options.sourcemap, () => ( options.debug)),
|
|
57
57
|
treeShaking: options.treeShaking
|
|
58
58
|
}
|
|
59
59
|
}
|
|
@@ -16,8 +16,14 @@ import { defu } from "defu";
|
|
|
16
16
|
import { createJiti } from "jiti";
|
|
17
17
|
async function unbuildExecutorFn(options, context, config) {
|
|
18
18
|
writeInfo("\u{1F4E6} Running Storm Unbuild executor on the workspace", config);
|
|
19
|
-
if (!context.projectsConfigurations?.projects || !context.projectName || !context.projectsConfigurations.projects[context.projectName]
|
|
20
|
-
throw new Error("The Build process failed because the context is not valid. Please run this command from a workspace.");
|
|
19
|
+
if (!context.projectsConfigurations?.projects || !context.projectName || !context.projectsConfigurations.projects[context.projectName]) {
|
|
20
|
+
throw new Error("The Build process failed because the context is not valid. Please run this command from a workspace root directory.");
|
|
21
|
+
}
|
|
22
|
+
if (!context.projectsConfigurations.projects[context.projectName].root) {
|
|
23
|
+
throw new Error("The Build process failed because the project root is not valid. Please run this command from a workspace root directory.");
|
|
24
|
+
}
|
|
25
|
+
if (!context.projectsConfigurations.projects[context.projectName].sourceRoot) {
|
|
26
|
+
throw new Error("The Build process failed because the project's source root is not valid. Please run this command from a workspace root directory.");
|
|
21
27
|
}
|
|
22
28
|
const jiti = createJiti(config.workspaceRoot, {
|
|
23
29
|
fsCache: config.skipCache ? false : joinPaths(config.directories.cache || "node_modules/.cache/storm", "jiti"),
|
|
@@ -26,11 +32,10 @@ async function unbuildExecutorFn(options, context, config) {
|
|
|
26
32
|
const stormUnbuild = await jiti.import(jiti.esmResolve("@storm-software/unbuild/build"));
|
|
27
33
|
await stormUnbuild.build(defu({
|
|
28
34
|
...options,
|
|
29
|
-
projectRoot: context.projectsConfigurations.projects
|
|
35
|
+
projectRoot: context.projectsConfigurations.projects[context.projectName].root,
|
|
30
36
|
projectName: context.projectName,
|
|
31
|
-
sourceRoot: context.projectsConfigurations.projects
|
|
32
|
-
platform: options.platform
|
|
33
|
-
name: context.projectName
|
|
37
|
+
sourceRoot: context.projectsConfigurations.projects[context.projectName].sourceRoot,
|
|
38
|
+
platform: options.platform
|
|
34
39
|
}, {
|
|
35
40
|
stubOptions: {
|
|
36
41
|
jiti: {
|
|
@@ -40,20 +45,15 @@ async function unbuildExecutorFn(options, context, config) {
|
|
|
40
45
|
rollup: {
|
|
41
46
|
emitCJS: true,
|
|
42
47
|
watch: false,
|
|
43
|
-
cjsBridge: false,
|
|
44
48
|
dts: {
|
|
45
49
|
respectExternal: true
|
|
46
50
|
},
|
|
47
|
-
replace: {},
|
|
48
|
-
alias: {},
|
|
49
|
-
resolve: {},
|
|
50
|
-
json: {},
|
|
51
|
-
commonjs: {},
|
|
52
51
|
esbuild: {
|
|
53
52
|
target: options.target,
|
|
54
53
|
format: "esm",
|
|
55
54
|
platform: options.platform,
|
|
56
|
-
minify: options.minify,
|
|
55
|
+
minify: options.minify ?? !options.debug,
|
|
56
|
+
sourcemap: options.sourcemap ?? options.debug,
|
|
57
57
|
treeShaking: options.treeShaking
|
|
58
58
|
}
|
|
59
59
|
}
|
package/dist/executors.js
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-3J53KHVV.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkFDQROX6Tjs = require('./chunk-FDQROX6T.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkCHBQHYNXjs = require('./chunk-CHBQHYNX.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
var _chunkSMQLC4ZDjs = require('./chunk-SMQLC4ZD.js');
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
var _chunkWPLOOG3Ujs = require('./chunk-WPLOOG3U.js');
|
|
14
|
+
require('./chunk-SEZJIRER.js');
|
|
14
15
|
|
|
15
16
|
|
|
16
17
|
var _chunk7DG4BPDHjs = require('./chunk-7DG4BPDH.js');
|
|
17
18
|
|
|
18
19
|
|
|
19
|
-
var
|
|
20
|
+
var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
|
|
20
21
|
|
|
21
22
|
|
|
22
|
-
var
|
|
23
|
+
var _chunkLSUHHBAMjs = require('./chunk-LSUHHBAM.js');
|
|
23
24
|
|
|
24
25
|
|
|
25
|
-
var
|
|
26
|
-
require('./chunk-SEZJIRER.js');
|
|
26
|
+
var _chunkMZ6IF3DOjs = require('./chunk-MZ6IF3DO.js');
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
var _chunkUR7LTGOYjs = require('./chunk-UR7LTGOY.js');
|
|
@@ -58,4 +58,4 @@ require('./chunk-3GQAWCBQ.js');
|
|
|
58
58
|
|
|
59
59
|
|
|
60
60
|
|
|
61
|
-
exports.LARGE_BUFFER = _chunkMZ6IF3DOjs.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkUR7LTGOYjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkE42HWC4Djs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkBUKUNOCVjs.cargoClippyExecutor; exports.cargoDocExecutor = _chunkSTENKYWNjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkLSUHHBAMjs.cargoFormatExecutor; exports.esbuildExecutorFn = _chunkCHBQHYNXjs.esbuildExecutorFn; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.sizeLimitExecutorFn = _chunkSMQLC4ZDjs.sizeLimitExecutorFn; exports.tsdownExecutorFn = _chunkWPLOOG3Ujs.tsdownExecutorFn; exports.typiaExecutorFn = _chunk7DG4BPDHjs.typiaExecutorFn; exports.unbuildExecutorFn =
|
|
61
|
+
exports.LARGE_BUFFER = _chunkMZ6IF3DOjs.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkUR7LTGOYjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkE42HWC4Djs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkBUKUNOCVjs.cargoClippyExecutor; exports.cargoDocExecutor = _chunkSTENKYWNjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkLSUHHBAMjs.cargoFormatExecutor; exports.esbuildExecutorFn = _chunkCHBQHYNXjs.esbuildExecutorFn; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.sizeLimitExecutorFn = _chunkSMQLC4ZDjs.sizeLimitExecutorFn; exports.tsdownExecutorFn = _chunkWPLOOG3Ujs.tsdownExecutorFn; exports.typiaExecutorFn = _chunk7DG4BPDHjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkFDQROX6Tjs.unbuildExecutorFn;
|
package/dist/executors.mjs
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
import "./chunk-V7YZ3666.mjs";
|
|
2
2
|
import {
|
|
3
3
|
unbuildExecutorFn
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-ODVU2NXI.mjs";
|
|
5
5
|
import {
|
|
6
|
-
|
|
7
|
-
} from "./chunk-
|
|
6
|
+
esbuildExecutorFn
|
|
7
|
+
} from "./chunk-X7DK54MN.mjs";
|
|
8
8
|
import {
|
|
9
9
|
sizeLimitExecutorFn
|
|
10
10
|
} from "./chunk-JES75APB.mjs";
|
|
11
11
|
import {
|
|
12
12
|
tsdownExecutorFn
|
|
13
13
|
} from "./chunk-U3DESZIP.mjs";
|
|
14
|
+
import "./chunk-Q3EM343U.mjs";
|
|
14
15
|
import {
|
|
15
16
|
typiaExecutorFn
|
|
16
17
|
} from "./chunk-YP6KREBX.mjs";
|
|
17
|
-
import {
|
|
18
|
-
cargoFormatExecutor
|
|
19
|
-
} from "./chunk-LQSCFXXH.mjs";
|
|
20
18
|
import {
|
|
21
19
|
getRegistryVersion
|
|
22
20
|
} from "./chunk-6ZQ3QYXH.mjs";
|
|
23
21
|
import {
|
|
24
|
-
|
|
25
|
-
} from "./chunk-
|
|
26
|
-
import
|
|
22
|
+
cargoFormatExecutor
|
|
23
|
+
} from "./chunk-LQSCFXXH.mjs";
|
|
24
|
+
import {
|
|
25
|
+
LARGE_BUFFER
|
|
26
|
+
} from "./chunk-5FEFILUQ.mjs";
|
|
27
27
|
import {
|
|
28
28
|
cargoBuildExecutor
|
|
29
29
|
} from "./chunk-PYLFT2B6.mjs";
|
package/dist/index.js
CHANGED
|
@@ -42,29 +42,29 @@ var _chunkZPWY4RXHjs = require('./chunk-ZPWY4RXH.js');
|
|
|
42
42
|
require('./chunk-3J53KHVV.js');
|
|
43
43
|
|
|
44
44
|
|
|
45
|
-
var
|
|
45
|
+
var _chunkFDQROX6Tjs = require('./chunk-FDQROX6T.js');
|
|
46
46
|
|
|
47
47
|
|
|
48
|
-
var
|
|
48
|
+
var _chunkCHBQHYNXjs = require('./chunk-CHBQHYNX.js');
|
|
49
49
|
|
|
50
50
|
|
|
51
51
|
var _chunkSMQLC4ZDjs = require('./chunk-SMQLC4ZD.js');
|
|
52
52
|
|
|
53
53
|
|
|
54
54
|
var _chunkWPLOOG3Ujs = require('./chunk-WPLOOG3U.js');
|
|
55
|
+
require('./chunk-SEZJIRER.js');
|
|
55
56
|
|
|
56
57
|
|
|
57
58
|
var _chunk7DG4BPDHjs = require('./chunk-7DG4BPDH.js');
|
|
58
59
|
|
|
59
60
|
|
|
60
|
-
var
|
|
61
|
+
var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
|
|
61
62
|
|
|
62
63
|
|
|
63
|
-
var
|
|
64
|
+
var _chunkLSUHHBAMjs = require('./chunk-LSUHHBAM.js');
|
|
64
65
|
|
|
65
66
|
|
|
66
|
-
var
|
|
67
|
-
require('./chunk-SEZJIRER.js');
|
|
67
|
+
var _chunkMZ6IF3DOjs = require('./chunk-MZ6IF3DO.js');
|
|
68
68
|
|
|
69
69
|
|
|
70
70
|
var _chunkUR7LTGOYjs = require('./chunk-UR7LTGOY.js');
|
|
@@ -277,4 +277,4 @@ require('./chunk-3GQAWCBQ.js');
|
|
|
277
277
|
|
|
278
278
|
|
|
279
279
|
|
|
280
|
-
exports.INVALID_CARGO_ARGS = _chunkULBTYC2Bjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkMZ6IF3DOjs.LARGE_BUFFER; exports.LOCK_FILES = _chunkPY52QA2Rjs.LOCK_FILES; exports.NPM_LOCK_FILE = _chunkPY52QA2Rjs.NPM_LOCK_FILE; exports.NPM_LOCK_PATH = _chunkPY52QA2Rjs.NPM_LOCK_PATH; exports.PNPM_LOCK_FILE = _chunkPY52QA2Rjs.PNPM_LOCK_FILE; exports.PNPM_LOCK_PATH = _chunkPY52QA2Rjs.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 = _chunkPY52QA2Rjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkPY52QA2Rjs.YARN_LOCK_PATH; exports.addPluginProjectTag = _chunk7YRW5HNXjs.addPluginProjectTag; exports.addProjectTag = _chunk7YRW5HNXjs.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunkBWFTYFWMjs.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunkVTNJFMZLjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkULBTYC2Bjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk6QO3KMZAjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkUR7LTGOYjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkE42HWC4Djs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkBUKUNOCVjs.cargoClippyExecutor; exports.cargoCommand = _chunkULBTYC2Bjs.cargoCommand; exports.cargoCommandSync = _chunkULBTYC2Bjs.cargoCommandSync; exports.cargoDocExecutor = _chunkSTENKYWNjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkLSUHHBAMjs.cargoFormatExecutor; exports.cargoMetadata = _chunkULBTYC2Bjs.cargoMetadata; exports.cargoRunCommand = _chunkULBTYC2Bjs.cargoRunCommand; exports.childProcess = _chunkULBTYC2Bjs.childProcess; exports.configSchemaGeneratorFn = _chunkIFT7I2FJjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkDHGZTMNDjs.createCliOptions; exports.createProjectTsConfigJson = _chunkFBLF4KJFjs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunkCHBQHYNXjs.esbuildExecutorFn; exports.eslintVersion = _chunkHI4G4OOGjs.eslintVersion; exports.formatProjectTag = _chunk7YRW5HNXjs.formatProjectTag; exports.getLockFileDependencies = _chunkPY52QA2Rjs.getLockFileDependencies; exports.getLockFileName = _chunkPY52QA2Rjs.getLockFileName; exports.getLockFileNodes = _chunkPY52QA2Rjs.getLockFileNodes; exports.getOutputPath = _chunkFBLF4KJFjs.getOutputPath; exports.getPackageInfo = _chunk7AXFMX2Tjs.getPackageInfo; exports.getProjectConfiguration = _chunkZPWY4RXHjs.getProjectConfiguration; exports.getProjectConfigurations = _chunkZPWY4RXHjs.getProjectConfigurations; 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 = _chunkPY52QA2Rjs.lockFileExists; exports.modifyCargoNestedTable = _chunkZMFVKBRMjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkZMFVKBRMjs.modifyCargoTable; exports.neutralLibraryGeneratorFn = _chunk3W2Z7D4Ujs.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunkBNVJA74Djs.nodeLibraryGeneratorFn; exports.nodeVersion = _chunkHI4G4OOGjs.nodeVersion; exports.normalizeOptions = _chunkFBLF4KJFjs.normalizeOptions; exports.nxVersion = _chunkHI4G4OOGjs.nxVersion; exports.parseCargoToml = _chunkZMFVKBRMjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkZMFVKBRMjs.parseCargoTomlWithTree; exports.pnpmCatalogUpdate = _chunkWPMFZECRjs.pnpmCatalogUpdate; exports.pnpmVersion = _chunkHI4G4OOGjs.pnpmVersion; exports.presetGeneratorFn = _chunkRER3HTR4js.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkHI4G4OOGjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkHI4G4OOGjs.prettierPrismaVersion; exports.prettierVersion = _chunkHI4G4OOGjs.prettierVersion; exports.releaseVersionGeneratorFn = _chunkCT2M6P5Rjs.releaseVersionGeneratorFn; exports.runProcess = _chunkULBTYC2Bjs.runProcess; exports.semanticReleaseVersion = _chunkHI4G4OOGjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunk7YRW5HNXjs.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunkSMQLC4ZDjs.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.tsdownExecutorFn = _chunkWPLOOG3Ujs.tsdownExecutorFn; exports.tsupVersion = _chunkHI4G4OOGjs.tsupVersion; exports.typeScriptLibraryGeneratorFn = _chunkFBLF4KJFjs.typeScriptLibraryGeneratorFn; exports.typesNodeVersion = _chunkHI4G4OOGjs.typesNodeVersion; exports.typescriptBuildExecutorSchema = _chunkIWCQL3AQjs.typescript_build_executor_untyped_default; exports.typescriptLibraryGeneratorSchema = _chunkZFIZ5Q46js.typescript_library_generator_untyped_default; exports.typescriptVersion = _chunkHI4G4OOGjs.typescriptVersion; exports.typiaExecutorFn = _chunk7DG4BPDHjs.typiaExecutorFn; exports.unbuildExecutorFn =
|
|
280
|
+
exports.INVALID_CARGO_ARGS = _chunkULBTYC2Bjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkMZ6IF3DOjs.LARGE_BUFFER; exports.LOCK_FILES = _chunkPY52QA2Rjs.LOCK_FILES; exports.NPM_LOCK_FILE = _chunkPY52QA2Rjs.NPM_LOCK_FILE; exports.NPM_LOCK_PATH = _chunkPY52QA2Rjs.NPM_LOCK_PATH; exports.PNPM_LOCK_FILE = _chunkPY52QA2Rjs.PNPM_LOCK_FILE; exports.PNPM_LOCK_PATH = _chunkPY52QA2Rjs.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 = _chunkPY52QA2Rjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkPY52QA2Rjs.YARN_LOCK_PATH; exports.addPluginProjectTag = _chunk7YRW5HNXjs.addPluginProjectTag; exports.addProjectTag = _chunk7YRW5HNXjs.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunkBWFTYFWMjs.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunkVTNJFMZLjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkULBTYC2Bjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk6QO3KMZAjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkUR7LTGOYjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkE42HWC4Djs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkBUKUNOCVjs.cargoClippyExecutor; exports.cargoCommand = _chunkULBTYC2Bjs.cargoCommand; exports.cargoCommandSync = _chunkULBTYC2Bjs.cargoCommandSync; exports.cargoDocExecutor = _chunkSTENKYWNjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkLSUHHBAMjs.cargoFormatExecutor; exports.cargoMetadata = _chunkULBTYC2Bjs.cargoMetadata; exports.cargoRunCommand = _chunkULBTYC2Bjs.cargoRunCommand; exports.childProcess = _chunkULBTYC2Bjs.childProcess; exports.configSchemaGeneratorFn = _chunkIFT7I2FJjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkDHGZTMNDjs.createCliOptions; exports.createProjectTsConfigJson = _chunkFBLF4KJFjs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunkCHBQHYNXjs.esbuildExecutorFn; exports.eslintVersion = _chunkHI4G4OOGjs.eslintVersion; exports.formatProjectTag = _chunk7YRW5HNXjs.formatProjectTag; exports.getLockFileDependencies = _chunkPY52QA2Rjs.getLockFileDependencies; exports.getLockFileName = _chunkPY52QA2Rjs.getLockFileName; exports.getLockFileNodes = _chunkPY52QA2Rjs.getLockFileNodes; exports.getOutputPath = _chunkFBLF4KJFjs.getOutputPath; exports.getPackageInfo = _chunk7AXFMX2Tjs.getPackageInfo; exports.getProjectConfiguration = _chunkZPWY4RXHjs.getProjectConfiguration; exports.getProjectConfigurations = _chunkZPWY4RXHjs.getProjectConfigurations; 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 = _chunkPY52QA2Rjs.lockFileExists; exports.modifyCargoNestedTable = _chunkZMFVKBRMjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkZMFVKBRMjs.modifyCargoTable; exports.neutralLibraryGeneratorFn = _chunk3W2Z7D4Ujs.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunkBNVJA74Djs.nodeLibraryGeneratorFn; exports.nodeVersion = _chunkHI4G4OOGjs.nodeVersion; exports.normalizeOptions = _chunkFBLF4KJFjs.normalizeOptions; exports.nxVersion = _chunkHI4G4OOGjs.nxVersion; exports.parseCargoToml = _chunkZMFVKBRMjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkZMFVKBRMjs.parseCargoTomlWithTree; exports.pnpmCatalogUpdate = _chunkWPMFZECRjs.pnpmCatalogUpdate; exports.pnpmVersion = _chunkHI4G4OOGjs.pnpmVersion; exports.presetGeneratorFn = _chunkRER3HTR4js.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkHI4G4OOGjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkHI4G4OOGjs.prettierPrismaVersion; exports.prettierVersion = _chunkHI4G4OOGjs.prettierVersion; exports.releaseVersionGeneratorFn = _chunkCT2M6P5Rjs.releaseVersionGeneratorFn; exports.runProcess = _chunkULBTYC2Bjs.runProcess; exports.semanticReleaseVersion = _chunkHI4G4OOGjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunk7YRW5HNXjs.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunkSMQLC4ZDjs.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.tsdownExecutorFn = _chunkWPLOOG3Ujs.tsdownExecutorFn; exports.tsupVersion = _chunkHI4G4OOGjs.tsupVersion; exports.typeScriptLibraryGeneratorFn = _chunkFBLF4KJFjs.typeScriptLibraryGeneratorFn; exports.typesNodeVersion = _chunkHI4G4OOGjs.typesNodeVersion; exports.typescriptBuildExecutorSchema = _chunkIWCQL3AQjs.typescript_build_executor_untyped_default; exports.typescriptLibraryGeneratorSchema = _chunkZFIZ5Q46js.typescript_library_generator_untyped_default; exports.typescriptVersion = _chunkHI4G4OOGjs.typescriptVersion; exports.typiaExecutorFn = _chunk7DG4BPDHjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkFDQROX6Tjs.unbuildExecutorFn; exports.verdaccioVersion = _chunkHI4G4OOGjs.verdaccioVersion; exports.withRunExecutor = _chunkB2TMWHSQjs.withRunExecutor; exports.withRunGenerator = _chunkTDO6POJNjs.withRunGenerator;
|
package/dist/index.mjs
CHANGED
|
@@ -42,29 +42,29 @@ import {
|
|
|
42
42
|
import "./chunk-V7YZ3666.mjs";
|
|
43
43
|
import {
|
|
44
44
|
unbuildExecutorFn
|
|
45
|
-
} from "./chunk-
|
|
45
|
+
} from "./chunk-ODVU2NXI.mjs";
|
|
46
46
|
import {
|
|
47
|
-
|
|
48
|
-
} from "./chunk-
|
|
47
|
+
esbuildExecutorFn
|
|
48
|
+
} from "./chunk-X7DK54MN.mjs";
|
|
49
49
|
import {
|
|
50
50
|
sizeLimitExecutorFn
|
|
51
51
|
} from "./chunk-JES75APB.mjs";
|
|
52
52
|
import {
|
|
53
53
|
tsdownExecutorFn
|
|
54
54
|
} from "./chunk-U3DESZIP.mjs";
|
|
55
|
+
import "./chunk-Q3EM343U.mjs";
|
|
55
56
|
import {
|
|
56
57
|
typiaExecutorFn
|
|
57
58
|
} from "./chunk-YP6KREBX.mjs";
|
|
58
|
-
import {
|
|
59
|
-
cargoFormatExecutor
|
|
60
|
-
} from "./chunk-LQSCFXXH.mjs";
|
|
61
59
|
import {
|
|
62
60
|
getRegistryVersion
|
|
63
61
|
} from "./chunk-6ZQ3QYXH.mjs";
|
|
64
62
|
import {
|
|
65
|
-
|
|
66
|
-
} from "./chunk-
|
|
67
|
-
import
|
|
63
|
+
cargoFormatExecutor
|
|
64
|
+
} from "./chunk-LQSCFXXH.mjs";
|
|
65
|
+
import {
|
|
66
|
+
LARGE_BUFFER
|
|
67
|
+
} from "./chunk-5FEFILUQ.mjs";
|
|
68
68
|
import {
|
|
69
69
|
cargoBuildExecutor
|
|
70
70
|
} from "./chunk-PYLFT2B6.mjs";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkFDQROX6Tjs = require('../../../chunk-FDQROX6T.js');
|
|
5
5
|
require('../../../chunk-B2TMWHSQ.js');
|
|
6
6
|
require('../../../chunk-XS73BPQS.js');
|
|
7
7
|
require('../../../chunk-M3X4P6AT.js');
|
|
@@ -11,4 +11,4 @@ require('../../../chunk-3GQAWCBQ.js');
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
exports.default =
|
|
14
|
+
exports.default = _chunkFDQROX6Tjs.executor_default; exports.unbuildExecutorFn = _chunkFDQROX6Tjs.unbuildExecutorFn;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/workspace-tools",
|
|
3
|
-
"version": "1.239.
|
|
3
|
+
"version": "1.239.2",
|
|
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",
|
|
@@ -209,10 +209,10 @@
|
|
|
209
209
|
"devDependencies": {
|
|
210
210
|
"@microsoft/api-extractor": "^7.48.1",
|
|
211
211
|
"@nx/esbuild": "^20.3.1",
|
|
212
|
-
"@storm-software/esbuild": "0.21.
|
|
213
|
-
"@storm-software/prettier": "0.30.
|
|
214
|
-
"@storm-software/tsdown": "0.22.
|
|
215
|
-
"@storm-software/unbuild": "0.30.
|
|
212
|
+
"@storm-software/esbuild": "0.21.1",
|
|
213
|
+
"@storm-software/prettier": "0.30.1",
|
|
214
|
+
"@storm-software/tsdown": "0.22.1",
|
|
215
|
+
"@storm-software/unbuild": "0.30.2",
|
|
216
216
|
"@types/micromatch": "4.0.9",
|
|
217
217
|
"@types/node": "^22.10.2",
|
|
218
218
|
"@types/semver": "7.5.8",
|