@storm-software/workspace-tools 1.267.0 → 1.267.1
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 +2 -1
- package/dist/{chunk-BUPROWVS.js → chunk-6DHCDMF3.js} +10 -1
- package/dist/{chunk-LUR7U35A.mjs → chunk-BKEGEV72.mjs} +13 -4
- package/dist/executors.js +12 -12
- package/dist/executors.mjs +13 -13
- package/dist/index.js +12 -12
- package/dist/index.mjs +13 -13
- package/dist/src/executors/esbuild/executor.js +2 -2
- package/dist/src/executors/esbuild/executor.mjs +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Workspace Tools
|
|
4
4
|
|
|
5
|
+
## [1.267.1](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.267.1) (2025-04-28)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Update dependency versions in packages
|
|
10
|
+
([f1f72dd67](https://github.com/storm-software/storm-ops/commit/f1f72dd67))
|
|
11
|
+
|
|
5
12
|
## [1.266.10](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.266.10) (2025-04-25)
|
|
6
13
|
|
|
7
14
|
### 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 -->
|
|
@@ -40,6 +40,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
40
40
|
|
|
41
41
|
<!-- START doctoc -->
|
|
42
42
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
43
|
+
|
|
43
44
|
## Table of Contents
|
|
44
45
|
|
|
45
46
|
- [Storm Workspace Tools](#storm-workspace-tools)
|
|
@@ -112,7 +112,16 @@ var _buildablelibsutils = require('@nx/js/src/utils/buildable-libs-utils');
|
|
|
112
112
|
|
|
113
113
|
var _projectgraph = require('nx/src/project-graph/project-graph');
|
|
114
114
|
var addPackageDependencies = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async (workspaceRoot, projectRoot, projectName, packageJson) => {
|
|
115
|
-
|
|
115
|
+
let projectGraph;
|
|
116
|
+
try {
|
|
117
|
+
projectGraph = _projectgraph.readCachedProjectGraph.call(void 0, );
|
|
118
|
+
} catch (e) {
|
|
119
|
+
await _projectgraph.createProjectGraphAsync.call(void 0, );
|
|
120
|
+
projectGraph = _projectgraph.readCachedProjectGraph.call(void 0, );
|
|
121
|
+
}
|
|
122
|
+
if (!projectGraph) {
|
|
123
|
+
throw new Error("The Build process failed because the project graph is not available. Please run the build command again.");
|
|
124
|
+
}
|
|
116
125
|
const projectDependencies = _buildablelibsutils.calculateProjectBuildableDependencies.call(void 0, void 0, projectGraph, workspaceRoot, projectName, process.env.NX_TASK_TARGET_TARGET || "build", process.env.NX_TASK_TARGET_CONFIGURATION || "production", true);
|
|
117
126
|
const localPackages = [];
|
|
118
127
|
for (const project of projectDependencies.dependencies.filter((dep) => dep.node.type === "lib" && _optionalChain([dep, 'access', _ => _.node, 'access', _2 => _2.data, 'optionalAccess', _3 => _3.root]) !== projectRoot && _optionalChain([dep, 'access', _4 => _4.node, 'access', _5 => _5.data, 'optionalAccess', _6 => _6.root]) !== workspaceRoot)) {
|
|
@@ -24,7 +24,7 @@ import {
|
|
|
24
24
|
} from "./chunk-N7GSKHH2.mjs";
|
|
25
25
|
|
|
26
26
|
// ../esbuild/src/build.ts
|
|
27
|
-
import { createProjectGraphAsync, readProjectsConfigurationFromProjectGraph as readProjectsConfigurationFromProjectGraph2, writeJsonFile } from "@nx/devkit";
|
|
27
|
+
import { createProjectGraphAsync as createProjectGraphAsync2, readProjectsConfigurationFromProjectGraph as readProjectsConfigurationFromProjectGraph2, writeJsonFile } from "@nx/devkit";
|
|
28
28
|
|
|
29
29
|
// ../build-tools/src/config.ts
|
|
30
30
|
var DEFAULT_COMPILED_BANNER = `/*****************************************
|
|
@@ -110,9 +110,18 @@ import { calculateProjectBuildableDependencies } from "@nx/js/src/utils/buildabl
|
|
|
110
110
|
import { Glob } from "glob";
|
|
111
111
|
import { existsSync, readFileSync } from "node:fs";
|
|
112
112
|
import { readFile as readFile2 } from "node:fs/promises";
|
|
113
|
-
import { readCachedProjectGraph, readProjectsConfigurationFromProjectGraph } from "nx/src/project-graph/project-graph";
|
|
113
|
+
import { createProjectGraphAsync, readCachedProjectGraph, readProjectsConfigurationFromProjectGraph } from "nx/src/project-graph/project-graph";
|
|
114
114
|
var addPackageDependencies = /* @__PURE__ */ __name(async (workspaceRoot, projectRoot, projectName, packageJson) => {
|
|
115
|
-
|
|
115
|
+
let projectGraph;
|
|
116
|
+
try {
|
|
117
|
+
projectGraph = readCachedProjectGraph();
|
|
118
|
+
} catch {
|
|
119
|
+
await createProjectGraphAsync();
|
|
120
|
+
projectGraph = readCachedProjectGraph();
|
|
121
|
+
}
|
|
122
|
+
if (!projectGraph) {
|
|
123
|
+
throw new Error("The Build process failed because the project graph is not available. Please run the build command again.");
|
|
124
|
+
}
|
|
116
125
|
const projectDependencies = calculateProjectBuildableDependencies(void 0, projectGraph, workspaceRoot, projectName, process.env.NX_TASK_TARGET_TARGET || "build", process.env.NX_TASK_TARGET_CONFIGURATION || "production", true);
|
|
117
126
|
const localPackages = [];
|
|
118
127
|
for (const project of projectDependencies.dependencies.filter((dep) => dep.node.type === "lib" && dep.node.data?.root !== projectRoot && dep.node.data?.root !== workspaceRoot)) {
|
|
@@ -405,7 +414,7 @@ async function resolveContext(userOptions) {
|
|
|
405
414
|
});
|
|
406
415
|
writeDebug(" \u2699\uFE0F Resolving build options", workspaceConfig);
|
|
407
416
|
const stopwatch = getStopwatch("Build options resolution");
|
|
408
|
-
const projectGraph = await
|
|
417
|
+
const projectGraph = await createProjectGraphAsync2({
|
|
409
418
|
exitOnError: true
|
|
410
419
|
});
|
|
411
420
|
const projectJsonPath = joinPaths(workspaceRoot.dir, projectRoot, "project.json");
|
package/dist/executors.js
CHANGED
|
@@ -1,25 +1,16 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-7VDOGZYO.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var _chunkICPUM2HSjs = require('./chunk-ICPUM2HS.js');
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
var _chunkYW4UN25Ujs = require('./chunk-YW4UN25U.js');
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
var _chunkBUPROWVSjs = require('./chunk-BUPROWVS.js');
|
|
11
|
-
|
|
12
|
-
|
|
13
4
|
var _chunkSUQKASD7js = require('./chunk-SUQKASD7.js');
|
|
14
5
|
|
|
15
6
|
|
|
16
7
|
var _chunkOKW5O5P4js = require('./chunk-OKW5O5P4.js');
|
|
17
8
|
|
|
18
9
|
|
|
19
|
-
var
|
|
10
|
+
var _chunkICPUM2HSjs = require('./chunk-ICPUM2HS.js');
|
|
20
11
|
|
|
21
12
|
|
|
22
|
-
var
|
|
13
|
+
var _chunkYW4UN25Ujs = require('./chunk-YW4UN25U.js');
|
|
23
14
|
|
|
24
15
|
|
|
25
16
|
var _chunkHOXPAVCLjs = require('./chunk-HOXPAVCL.js');
|
|
@@ -28,10 +19,19 @@ var _chunkHOXPAVCLjs = require('./chunk-HOXPAVCL.js');
|
|
|
28
19
|
var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
|
|
29
20
|
|
|
30
21
|
|
|
22
|
+
var _chunk6DHCDMF3js = require('./chunk-6DHCDMF3.js');
|
|
23
|
+
|
|
24
|
+
|
|
31
25
|
var _chunkB3DVFXXDjs = require('./chunk-B3DVFXXD.js');
|
|
32
26
|
|
|
33
27
|
|
|
34
28
|
var _chunkRUKOOSWLjs = require('./chunk-RUKOOSWL.js');
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
var _chunkNSCWEC2Sjs = require('./chunk-NSCWEC2S.js');
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
var _chunkTET4GF3Djs = require('./chunk-TET4GF3D.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 = _chunkSUQKASD7js.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkB3DVFXXDjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkRUKOOSWLjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkNSCWEC2Sjs.cargoClippyExecutor; exports.cargoDocExecutor = _chunkTET4GF3Djs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkHOXPAVCLjs.cargoFormatExecutor; exports.esbuildExecutorFn =
|
|
56
|
+
exports.LARGE_BUFFER = _chunkSUQKASD7js.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkB3DVFXXDjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkRUKOOSWLjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkNSCWEC2Sjs.cargoClippyExecutor; exports.cargoDocExecutor = _chunkTET4GF3Djs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkHOXPAVCLjs.cargoFormatExecutor; exports.esbuildExecutorFn = _chunk6DHCDMF3js.esbuildExecutorFn; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.sizeLimitExecutorFn = _chunkOKW5O5P4js.sizeLimitExecutorFn; exports.typiaExecutorFn = _chunkICPUM2HSjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkYW4UN25Ujs.unbuildExecutorFn;
|
package/dist/executors.mjs
CHANGED
|
@@ -1,13 +1,4 @@
|
|
|
1
1
|
import "./chunk-BLX5SLPC.mjs";
|
|
2
|
-
import {
|
|
3
|
-
typiaExecutorFn
|
|
4
|
-
} from "./chunk-CM2FQCBL.mjs";
|
|
5
|
-
import {
|
|
6
|
-
unbuildExecutorFn
|
|
7
|
-
} from "./chunk-TRD4W5ZK.mjs";
|
|
8
|
-
import {
|
|
9
|
-
esbuildExecutorFn
|
|
10
|
-
} from "./chunk-LUR7U35A.mjs";
|
|
11
2
|
import {
|
|
12
3
|
LARGE_BUFFER
|
|
13
4
|
} from "./chunk-BJMT4ECA.mjs";
|
|
@@ -15,23 +6,32 @@ import {
|
|
|
15
6
|
sizeLimitExecutorFn
|
|
16
7
|
} from "./chunk-WAXAZ5PV.mjs";
|
|
17
8
|
import {
|
|
18
|
-
|
|
19
|
-
} from "./chunk-
|
|
9
|
+
typiaExecutorFn
|
|
10
|
+
} from "./chunk-CM2FQCBL.mjs";
|
|
20
11
|
import {
|
|
21
|
-
|
|
22
|
-
} from "./chunk-
|
|
12
|
+
unbuildExecutorFn
|
|
13
|
+
} from "./chunk-TRD4W5ZK.mjs";
|
|
23
14
|
import {
|
|
24
15
|
cargoFormatExecutor
|
|
25
16
|
} from "./chunk-QXE7GTBY.mjs";
|
|
26
17
|
import {
|
|
27
18
|
getRegistryVersion
|
|
28
19
|
} from "./chunk-RPMGDH44.mjs";
|
|
20
|
+
import {
|
|
21
|
+
esbuildExecutorFn
|
|
22
|
+
} from "./chunk-BKEGEV72.mjs";
|
|
29
23
|
import {
|
|
30
24
|
cargoBuildExecutor
|
|
31
25
|
} from "./chunk-MFSIJSBW.mjs";
|
|
32
26
|
import {
|
|
33
27
|
cargoCheckExecutor
|
|
34
28
|
} from "./chunk-FPAOVOZX.mjs";
|
|
29
|
+
import {
|
|
30
|
+
cargoClippyExecutor
|
|
31
|
+
} from "./chunk-EHFWY65U.mjs";
|
|
32
|
+
import {
|
|
33
|
+
cargoDocExecutor
|
|
34
|
+
} from "./chunk-V42FQ4FR.mjs";
|
|
35
35
|
import "./chunk-LS27TGDZ.mjs";
|
|
36
36
|
import "./chunk-GNFQ5PGW.mjs";
|
|
37
37
|
import "./chunk-7FHFHZRB.mjs";
|
package/dist/index.js
CHANGED
|
@@ -48,25 +48,16 @@ var _chunkGKL4BY2Yjs = require('./chunk-GKL4BY2Y.js');
|
|
|
48
48
|
require('./chunk-7VDOGZYO.js');
|
|
49
49
|
|
|
50
50
|
|
|
51
|
-
var _chunkICPUM2HSjs = require('./chunk-ICPUM2HS.js');
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
var _chunkYW4UN25Ujs = require('./chunk-YW4UN25U.js');
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
var _chunkBUPROWVSjs = require('./chunk-BUPROWVS.js');
|
|
58
|
-
|
|
59
|
-
|
|
60
51
|
var _chunkSUQKASD7js = require('./chunk-SUQKASD7.js');
|
|
61
52
|
|
|
62
53
|
|
|
63
54
|
var _chunkOKW5O5P4js = require('./chunk-OKW5O5P4.js');
|
|
64
55
|
|
|
65
56
|
|
|
66
|
-
var
|
|
57
|
+
var _chunkICPUM2HSjs = require('./chunk-ICPUM2HS.js');
|
|
67
58
|
|
|
68
59
|
|
|
69
|
-
var
|
|
60
|
+
var _chunkYW4UN25Ujs = require('./chunk-YW4UN25U.js');
|
|
70
61
|
|
|
71
62
|
|
|
72
63
|
var _chunkHOXPAVCLjs = require('./chunk-HOXPAVCL.js');
|
|
@@ -75,12 +66,21 @@ var _chunkHOXPAVCLjs = require('./chunk-HOXPAVCL.js');
|
|
|
75
66
|
var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
|
|
76
67
|
|
|
77
68
|
|
|
69
|
+
var _chunk6DHCDMF3js = require('./chunk-6DHCDMF3.js');
|
|
70
|
+
|
|
71
|
+
|
|
78
72
|
var _chunkB3DVFXXDjs = require('./chunk-B3DVFXXD.js');
|
|
79
73
|
|
|
80
74
|
|
|
81
75
|
var _chunkRUKOOSWLjs = require('./chunk-RUKOOSWL.js');
|
|
82
76
|
|
|
83
77
|
|
|
78
|
+
var _chunkNSCWEC2Sjs = require('./chunk-NSCWEC2S.js');
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
var _chunkTET4GF3Djs = require('./chunk-TET4GF3D.js');
|
|
82
|
+
|
|
83
|
+
|
|
84
84
|
var _chunkCUPARBOSjs = require('./chunk-CUPARBOS.js');
|
|
85
85
|
|
|
86
86
|
|
|
@@ -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 = _chunkSUQKASD7js.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 = _chunkOQPX75CGjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkULBTYC2Bjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk6QO3KMZAjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkB3DVFXXDjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkRUKOOSWLjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkNSCWEC2Sjs.cargoClippyExecutor; exports.cargoCommand = _chunkULBTYC2Bjs.cargoCommand; exports.cargoCommandSync = _chunkULBTYC2Bjs.cargoCommandSync; exports.cargoDocExecutor = _chunkTET4GF3Djs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkHOXPAVCLjs.cargoFormatExecutor; exports.cargoMetadata = _chunkULBTYC2Bjs.cargoMetadata; exports.cargoRunCommand = _chunkULBTYC2Bjs.cargoRunCommand; exports.childProcess = _chunkULBTYC2Bjs.childProcess; exports.configSchemaGeneratorFn = _chunk6JJB5AYAjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkDHGZTMNDjs.createCliOptions; exports.createProjectTsConfigJson = _chunkRBU35LQWjs.createProjectTsConfigJson; exports.esbuildExecutorFn =
|
|
285
|
+
exports.INVALID_CARGO_ARGS = _chunkULBTYC2Bjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkSUQKASD7js.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 = _chunkOQPX75CGjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkULBTYC2Bjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk6QO3KMZAjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkB3DVFXXDjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkRUKOOSWLjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkNSCWEC2Sjs.cargoClippyExecutor; exports.cargoCommand = _chunkULBTYC2Bjs.cargoCommand; exports.cargoCommandSync = _chunkULBTYC2Bjs.cargoCommandSync; exports.cargoDocExecutor = _chunkTET4GF3Djs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkHOXPAVCLjs.cargoFormatExecutor; exports.cargoMetadata = _chunkULBTYC2Bjs.cargoMetadata; exports.cargoRunCommand = _chunkULBTYC2Bjs.cargoRunCommand; exports.childProcess = _chunkULBTYC2Bjs.childProcess; exports.configSchemaGeneratorFn = _chunk6JJB5AYAjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkDHGZTMNDjs.createCliOptions; exports.createProjectTsConfigJson = _chunkRBU35LQWjs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunk6DHCDMF3js.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 = _chunk7PRHEOCTjs.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunk7NNHBZC5js.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 = _chunkP4OVFIT6js.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkHI4G4OOGjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkHI4G4OOGjs.prettierPrismaVersion; exports.prettierVersion = _chunkHI4G4OOGjs.prettierVersion; exports.releaseVersionGeneratorFn = _chunk4Y6B6JDHjs.releaseVersionGeneratorFn; exports.runProcess = _chunkULBTYC2Bjs.runProcess; exports.semanticReleaseVersion = _chunkHI4G4OOGjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunk7YRW5HNXjs.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunkOKW5O5P4js.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 = _chunkICPUM2HSjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkYW4UN25Ujs.unbuildExecutorFn; exports.verdaccioVersion = _chunkHI4G4OOGjs.verdaccioVersion; exports.withRunExecutor = _chunk6CGAYKQLjs.withRunExecutor; exports.withRunGenerator = _chunkZ4NKRWWJjs.withRunGenerator;
|
package/dist/index.mjs
CHANGED
|
@@ -46,15 +46,6 @@ import {
|
|
|
46
46
|
getProjectConfigurations
|
|
47
47
|
} from "./chunk-N4QRXJLZ.mjs";
|
|
48
48
|
import "./chunk-BLX5SLPC.mjs";
|
|
49
|
-
import {
|
|
50
|
-
typiaExecutorFn
|
|
51
|
-
} from "./chunk-CM2FQCBL.mjs";
|
|
52
|
-
import {
|
|
53
|
-
unbuildExecutorFn
|
|
54
|
-
} from "./chunk-TRD4W5ZK.mjs";
|
|
55
|
-
import {
|
|
56
|
-
esbuildExecutorFn
|
|
57
|
-
} from "./chunk-LUR7U35A.mjs";
|
|
58
49
|
import {
|
|
59
50
|
LARGE_BUFFER
|
|
60
51
|
} from "./chunk-BJMT4ECA.mjs";
|
|
@@ -62,23 +53,32 @@ import {
|
|
|
62
53
|
sizeLimitExecutorFn
|
|
63
54
|
} from "./chunk-WAXAZ5PV.mjs";
|
|
64
55
|
import {
|
|
65
|
-
|
|
66
|
-
} from "./chunk-
|
|
56
|
+
typiaExecutorFn
|
|
57
|
+
} from "./chunk-CM2FQCBL.mjs";
|
|
67
58
|
import {
|
|
68
|
-
|
|
69
|
-
} from "./chunk-
|
|
59
|
+
unbuildExecutorFn
|
|
60
|
+
} from "./chunk-TRD4W5ZK.mjs";
|
|
70
61
|
import {
|
|
71
62
|
cargoFormatExecutor
|
|
72
63
|
} from "./chunk-QXE7GTBY.mjs";
|
|
73
64
|
import {
|
|
74
65
|
getRegistryVersion
|
|
75
66
|
} from "./chunk-RPMGDH44.mjs";
|
|
67
|
+
import {
|
|
68
|
+
esbuildExecutorFn
|
|
69
|
+
} from "./chunk-BKEGEV72.mjs";
|
|
76
70
|
import {
|
|
77
71
|
cargoBuildExecutor
|
|
78
72
|
} from "./chunk-MFSIJSBW.mjs";
|
|
79
73
|
import {
|
|
80
74
|
cargoCheckExecutor
|
|
81
75
|
} from "./chunk-FPAOVOZX.mjs";
|
|
76
|
+
import {
|
|
77
|
+
cargoClippyExecutor
|
|
78
|
+
} from "./chunk-EHFWY65U.mjs";
|
|
79
|
+
import {
|
|
80
|
+
cargoDocExecutor
|
|
81
|
+
} from "./chunk-V42FQ4FR.mjs";
|
|
82
82
|
import {
|
|
83
83
|
pnpmCatalogUpdate
|
|
84
84
|
} from "./chunk-LS27TGDZ.mjs";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunk6DHCDMF3js = require('../../../chunk-6DHCDMF3.js');
|
|
5
5
|
require('../../../chunk-6CGAYKQL.js');
|
|
6
6
|
require('../../../chunk-UALZJZUK.js');
|
|
7
7
|
require('../../../chunk-G4QFSE5B.js');
|
|
@@ -11,4 +11,4 @@ require('../../../chunk-3GQAWCBQ.js');
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
exports.default =
|
|
14
|
+
exports.default = _chunk6DHCDMF3js.executor_default; exports.esbuildExecutorFn = _chunk6DHCDMF3js.esbuildExecutorFn;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/workspace-tools",
|
|
3
|
-
"version": "1.267.
|
|
3
|
+
"version": "1.267.1",
|
|
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",
|
|
@@ -210,7 +210,7 @@
|
|
|
210
210
|
"@ltd/j-toml": "1.38.0",
|
|
211
211
|
"@microsoft/api-extractor": "^7.48.1",
|
|
212
212
|
"@nx/devkit": "20.8.0",
|
|
213
|
-
"@samchon/openapi": "^2.3
|
|
213
|
+
"@samchon/openapi": "^2.5.3",
|
|
214
214
|
"@size-limit/esbuild": "11.1.4",
|
|
215
215
|
"@size-limit/esbuild-why": "11.1.4",
|
|
216
216
|
"@size-limit/file": "11.1.4",
|
|
@@ -218,7 +218,7 @@
|
|
|
218
218
|
"glob": "^11.0.1",
|
|
219
219
|
"jiti": "^2.4.2",
|
|
220
220
|
"markdownlint-cli2": "^0.17.2",
|
|
221
|
-
"micromatch": "^4.0.
|
|
221
|
+
"micromatch": "^4.0.8",
|
|
222
222
|
"prettier": "^3.5.1",
|
|
223
223
|
"prettier-plugin-pkg": "^0.18.1",
|
|
224
224
|
"read-yaml-file": "2.1.0",
|