@storm-software/workspace-tools 1.264.19 → 1.264.20
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-YX566HFQ.js → chunk-TLFV74ZV.js} +12 -7
- package/dist/{chunk-OBMMNTJQ.mjs → chunk-WGRKPUAV.mjs} +7 -2
- package/dist/executors.js +2 -2
- package/dist/executors.mjs +1 -1
- package/dist/generators.js +2 -2
- package/dist/generators.mjs +3 -3
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- 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.20](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.264.20) (2025-03-17)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate README markdown files
|
|
10
|
+
([90d1828f9](https://github.com/storm-software/storm-ops/commit/90d1828f9))
|
|
11
|
+
|
|
5
12
|
## [1.264.19](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.264.19) (2025-03-17)
|
|
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 -->
|
|
@@ -1060,12 +1060,16 @@ var resolveOptions = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async
|
|
|
1060
1060
|
};
|
|
1061
1061
|
}, {})
|
|
1062
1062
|
},
|
|
1063
|
-
inject:
|
|
1063
|
+
inject: [
|
|
1064
1064
|
options.format === "cjs" && options.injectShims ? _chunkJTAXCQX6js.joinPaths.call(void 0, __dirname, "../assets/cjs_shims.js") : "",
|
|
1065
1065
|
options.format === "esm" && options.injectShims && options.platform === "node" ? _chunkJTAXCQX6js.joinPaths.call(void 0, __dirname, "../assets/esm_shims.js") : ""
|
|
1066
|
-
]
|
|
1066
|
+
]
|
|
1067
1067
|
};
|
|
1068
1068
|
result.plugins = _nullishCoalesce(userOptions.plugins, () => ( getDefaultBuildPlugins(userOptions, result)));
|
|
1069
|
+
if (options.inject) {
|
|
1070
|
+
options.inject = _defu2.default.call(void 0, result.inject, options.inject);
|
|
1071
|
+
}
|
|
1072
|
+
_optionalChain([options, 'access', _45 => _45.inject, 'optionalAccess', _46 => _46.filter, 'call', _47 => _47(Boolean)]);
|
|
1069
1073
|
delete result.entry;
|
|
1070
1074
|
delete result.outputPath;
|
|
1071
1075
|
stopwatch();
|
|
@@ -1177,6 +1181,7 @@ async function executeEsBuild(context2) {
|
|
|
1177
1181
|
delete options.renderers;
|
|
1178
1182
|
delete options.config;
|
|
1179
1183
|
delete options.injectShims;
|
|
1184
|
+
delete options.external;
|
|
1180
1185
|
_chunkSPRQWSBEjs.writeTrace.call(void 0, `Run esbuild (${context2.options.name}) with the following options:
|
|
1181
1186
|
${_chunkSPRQWSBEjs.formatLogMessage.call(void 0, options)}`, context2.options.config);
|
|
1182
1187
|
const result = await esbuild2.build(options);
|
|
@@ -1190,7 +1195,7 @@ ${_chunkSPRQWSBEjs.formatLogMessage.call(void 0, options)}`, context2.options.co
|
|
|
1190
1195
|
}
|
|
1191
1196
|
_chunk3GQAWCBQjs.__name.call(void 0, executeEsBuild, "executeEsBuild");
|
|
1192
1197
|
async function copyBuildAssets(context2) {
|
|
1193
|
-
if (_optionalChain([context2, 'access',
|
|
1198
|
+
if (_optionalChain([context2, 'access', _48 => _48.result, 'optionalAccess', _49 => _49.errors, 'access', _50 => _50.length]) === 0) {
|
|
1194
1199
|
_chunkSPRQWSBEjs.writeDebug.call(void 0, ` \u{1F4CB} Copying asset files to output directory: ${context2.options.outdir}`, context2.options.config);
|
|
1195
1200
|
const stopwatch = _chunkSPRQWSBEjs.getStopwatch.call(void 0, `${context2.options.name} asset copy`);
|
|
1196
1201
|
await copyAssets(context2.options.config, _nullishCoalesce(context2.options.assets, () => ( [])), context2.options.outdir, context2.options.projectRoot, context2.options.sourceRoot, true, false);
|
|
@@ -1200,7 +1205,7 @@ async function copyBuildAssets(context2) {
|
|
|
1200
1205
|
}
|
|
1201
1206
|
_chunk3GQAWCBQjs.__name.call(void 0, copyBuildAssets, "copyBuildAssets");
|
|
1202
1207
|
async function reportResults(context2) {
|
|
1203
|
-
if (_optionalChain([context2, 'access',
|
|
1208
|
+
if (_optionalChain([context2, 'access', _51 => _51.result, 'optionalAccess', _52 => _52.errors, 'access', _53 => _53.length]) === 0) {
|
|
1204
1209
|
if (context2.result.warnings.length > 0) {
|
|
1205
1210
|
_chunkSPRQWSBEjs.writeWarning.call(void 0, ` \u{1F6A7} The following warnings occurred during the build: ${context2.result.warnings.map((warning) => warning.text).join("\n")}`, context2.options.config);
|
|
1206
1211
|
}
|
|
@@ -1301,14 +1306,14 @@ var watch = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (context2, opti
|
|
|
1301
1306
|
// src/executors/esbuild/executor.ts
|
|
1302
1307
|
async function esbuildExecutorFn(options, context2, config) {
|
|
1303
1308
|
_chunkSPRQWSBEjs.writeInfo.call(void 0, "\u{1F4E6} Running Storm ESBuild executor on the workspace", config);
|
|
1304
|
-
if (!_optionalChain([context2, 'access',
|
|
1309
|
+
if (!_optionalChain([context2, 'access', _54 => _54.projectsConfigurations, 'optionalAccess', _55 => _55.projects]) || !context2.projectName || !context2.projectsConfigurations.projects[context2.projectName] || !_optionalChain([context2, 'access', _56 => _56.projectsConfigurations, 'access', _57 => _57.projects, 'access', _58 => _58[context2.projectName], 'optionalAccess', _59 => _59.root])) {
|
|
1305
1310
|
throw new Error("The Build process failed because the context is not valid. Please run this command from a workspace.");
|
|
1306
1311
|
}
|
|
1307
1312
|
await build3({
|
|
1308
1313
|
...options,
|
|
1309
|
-
projectRoot: _optionalChain([context2, 'access',
|
|
1314
|
+
projectRoot: _optionalChain([context2, 'access', _60 => _60.projectsConfigurations, 'access', _61 => _61.projects, 'optionalAccess', _62 => _62[context2.projectName], 'access', _63 => _63.root]),
|
|
1310
1315
|
projectName: context2.projectName,
|
|
1311
|
-
sourceRoot: _optionalChain([context2, 'access',
|
|
1316
|
+
sourceRoot: _optionalChain([context2, 'access', _64 => _64.projectsConfigurations, 'access', _65 => _65.projects, 'optionalAccess', _66 => _66[context2.projectName], 'optionalAccess', _67 => _67.sourceRoot]),
|
|
1312
1317
|
format: options.format,
|
|
1313
1318
|
platform: options.format
|
|
1314
1319
|
});
|
|
@@ -1061,12 +1061,16 @@ var resolveOptions = /* @__PURE__ */ __name(async (userOptions) => {
|
|
|
1061
1061
|
};
|
|
1062
1062
|
}, {})
|
|
1063
1063
|
},
|
|
1064
|
-
inject:
|
|
1064
|
+
inject: [
|
|
1065
1065
|
options.format === "cjs" && options.injectShims ? joinPaths(__dirname, "../assets/cjs_shims.js") : "",
|
|
1066
1066
|
options.format === "esm" && options.injectShims && options.platform === "node" ? joinPaths(__dirname, "../assets/esm_shims.js") : ""
|
|
1067
|
-
]
|
|
1067
|
+
]
|
|
1068
1068
|
};
|
|
1069
1069
|
result.plugins = userOptions.plugins ?? getDefaultBuildPlugins(userOptions, result);
|
|
1070
|
+
if (options.inject) {
|
|
1071
|
+
options.inject = defu(result.inject, options.inject);
|
|
1072
|
+
}
|
|
1073
|
+
options.inject?.filter(Boolean);
|
|
1070
1074
|
delete result.entry;
|
|
1071
1075
|
delete result.outputPath;
|
|
1072
1076
|
stopwatch();
|
|
@@ -1178,6 +1182,7 @@ async function executeEsBuild(context2) {
|
|
|
1178
1182
|
delete options.renderers;
|
|
1179
1183
|
delete options.config;
|
|
1180
1184
|
delete options.injectShims;
|
|
1185
|
+
delete options.external;
|
|
1181
1186
|
writeTrace(`Run esbuild (${context2.options.name}) with the following options:
|
|
1182
1187
|
${formatLogMessage(options)}`, context2.options.config);
|
|
1183
1188
|
const result = await esbuild2.build(options);
|
package/dist/executors.js
CHANGED
|
@@ -19,7 +19,7 @@ var _chunkDJJEQUOEjs = require('./chunk-DJJEQUOE.js');
|
|
|
19
19
|
var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
var
|
|
22
|
+
var _chunkTLFV74ZVjs = require('./chunk-TLFV74ZV.js');
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
var _chunkDYKPDBZQjs = require('./chunk-DYKPDBZQ.js');
|
|
@@ -53,4 +53,4 @@ require('./chunk-3GQAWCBQ.js');
|
|
|
53
53
|
|
|
54
54
|
|
|
55
55
|
|
|
56
|
-
exports.LARGE_BUFFER = _chunkGJQKCDGCjs.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkDYKPDBZQjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkVGWC25SXjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkI44JBB55js.cargoClippyExecutor; exports.cargoDocExecutor = _chunk3MWOC5X7js.cargoDocExecutor; exports.cargoFormatExecutor = _chunkDJJEQUOEjs.cargoFormatExecutor; exports.esbuildExecutorFn =
|
|
56
|
+
exports.LARGE_BUFFER = _chunkGJQKCDGCjs.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkDYKPDBZQjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkVGWC25SXjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkI44JBB55js.cargoClippyExecutor; exports.cargoDocExecutor = _chunk3MWOC5X7js.cargoDocExecutor; exports.cargoFormatExecutor = _chunkDJJEQUOEjs.cargoFormatExecutor; exports.esbuildExecutorFn = _chunkTLFV74ZVjs.esbuildExecutorFn; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.sizeLimitExecutorFn = _chunkASBO74YMjs.sizeLimitExecutorFn; exports.typiaExecutorFn = _chunkEEMX5TF7js.typiaExecutorFn; exports.unbuildExecutorFn = _chunkTFNKD3A2js.unbuildExecutorFn;
|
package/dist/executors.mjs
CHANGED
package/dist/generators.js
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
var _chunkIRPD2M2Ijs = require('./chunk-IRPD2M2I.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkIFB5HNMTjs = require('./chunk-IFB5HNMT.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
var
|
|
10
|
+
var _chunkW25HMODDjs = require('./chunk-W25HMODD.js');
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
var _chunkKFT2TAHEjs = require('./chunk-KFT2TAHE.js');
|
package/dist/generators.mjs
CHANGED
|
@@ -2,12 +2,12 @@ import "./chunk-RLIZVCIN.mjs";
|
|
|
2
2
|
import {
|
|
3
3
|
nodeLibraryGeneratorFn
|
|
4
4
|
} from "./chunk-NW4PIBL2.mjs";
|
|
5
|
-
import {
|
|
6
|
-
releaseVersionGeneratorFn
|
|
7
|
-
} from "./chunk-5OWPWITA.mjs";
|
|
8
5
|
import {
|
|
9
6
|
presetGeneratorFn
|
|
10
7
|
} from "./chunk-PUW5GKBJ.mjs";
|
|
8
|
+
import {
|
|
9
|
+
releaseVersionGeneratorFn
|
|
10
|
+
} from "./chunk-5OWPWITA.mjs";
|
|
11
11
|
import {
|
|
12
12
|
browserLibraryGeneratorFn
|
|
13
13
|
} from "./chunk-FQSPQRIB.mjs";
|
package/dist/index.js
CHANGED
|
@@ -66,7 +66,7 @@ var _chunkDJJEQUOEjs = require('./chunk-DJJEQUOE.js');
|
|
|
66
66
|
var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
|
|
67
67
|
|
|
68
68
|
|
|
69
|
-
var
|
|
69
|
+
var _chunkTLFV74ZVjs = require('./chunk-TLFV74ZV.js');
|
|
70
70
|
|
|
71
71
|
|
|
72
72
|
var _chunkDYKPDBZQjs = require('./chunk-DYKPDBZQ.js');
|
|
@@ -99,10 +99,10 @@ require('./chunk-INERRJ6Q.js');
|
|
|
99
99
|
var _chunkIRPD2M2Ijs = require('./chunk-IRPD2M2I.js');
|
|
100
100
|
|
|
101
101
|
|
|
102
|
-
var
|
|
102
|
+
var _chunkIFB5HNMTjs = require('./chunk-IFB5HNMT.js');
|
|
103
103
|
|
|
104
104
|
|
|
105
|
-
var
|
|
105
|
+
var _chunkW25HMODDjs = require('./chunk-W25HMODD.js');
|
|
106
106
|
|
|
107
107
|
|
|
108
108
|
var _chunkKFT2TAHEjs = require('./chunk-KFT2TAHE.js');
|
|
@@ -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 = _chunkKFT2TAHEjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkULBTYC2Bjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk6QO3KMZAjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkDYKPDBZQjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkVGWC25SXjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkI44JBB55js.cargoClippyExecutor; exports.cargoCommand = _chunkULBTYC2Bjs.cargoCommand; exports.cargoCommandSync = _chunkULBTYC2Bjs.cargoCommandSync; exports.cargoDocExecutor = _chunk3MWOC5X7js.cargoDocExecutor; exports.cargoFormatExecutor = _chunkDJJEQUOEjs.cargoFormatExecutor; exports.cargoMetadata = _chunkULBTYC2Bjs.cargoMetadata; exports.cargoRunCommand = _chunkULBTYC2Bjs.cargoRunCommand; exports.childProcess = _chunkULBTYC2Bjs.childProcess; exports.configSchemaGeneratorFn = _chunkYCDNXKRBjs.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 = _chunkKFT2TAHEjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkULBTYC2Bjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk6QO3KMZAjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkDYKPDBZQjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkVGWC25SXjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkI44JBB55js.cargoClippyExecutor; exports.cargoCommand = _chunkULBTYC2Bjs.cargoCommand; exports.cargoCommandSync = _chunkULBTYC2Bjs.cargoCommandSync; exports.cargoDocExecutor = _chunk3MWOC5X7js.cargoDocExecutor; exports.cargoFormatExecutor = _chunkDJJEQUOEjs.cargoFormatExecutor; exports.cargoMetadata = _chunkULBTYC2Bjs.cargoMetadata; exports.cargoRunCommand = _chunkULBTYC2Bjs.cargoRunCommand; exports.childProcess = _chunkULBTYC2Bjs.childProcess; exports.configSchemaGeneratorFn = _chunkYCDNXKRBjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkDHGZTMNDjs.createCliOptions; exports.createProjectTsConfigJson = _chunkRBU35LQWjs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunkTLFV74ZVjs.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 = _chunkP5WJDR64js.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunkIRPD2M2Ijs.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 = _chunkIFB5HNMTjs.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkHI4G4OOGjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkHI4G4OOGjs.prettierPrismaVersion; exports.prettierVersion = _chunkHI4G4OOGjs.prettierVersion; exports.releaseVersionGeneratorFn = _chunkW25HMODDjs.releaseVersionGeneratorFn; exports.runProcess = _chunkULBTYC2Bjs.runProcess; exports.semanticReleaseVersion = _chunkHI4G4OOGjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunk7YRW5HNXjs.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunkASBO74YMjs.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 = _chunkEEMX5TF7js.typiaExecutorFn; exports.unbuildExecutorFn = _chunkTFNKD3A2js.unbuildExecutorFn; exports.verdaccioVersion = _chunkHI4G4OOGjs.verdaccioVersion; exports.withRunExecutor = _chunkIVNDY2FEjs.withRunExecutor; exports.withRunGenerator = _chunkSWKSEHJVjs.withRunGenerator;
|
package/dist/index.mjs
CHANGED
|
@@ -66,7 +66,7 @@ import {
|
|
|
66
66
|
} from "./chunk-3PWCELL5.mjs";
|
|
67
67
|
import {
|
|
68
68
|
esbuildExecutorFn
|
|
69
|
-
} from "./chunk-
|
|
69
|
+
} from "./chunk-WGRKPUAV.mjs";
|
|
70
70
|
import {
|
|
71
71
|
cargoBuildExecutor
|
|
72
72
|
} from "./chunk-MHZ6V7XS.mjs";
|
|
@@ -97,12 +97,12 @@ import "./chunk-RLIZVCIN.mjs";
|
|
|
97
97
|
import {
|
|
98
98
|
nodeLibraryGeneratorFn
|
|
99
99
|
} from "./chunk-NW4PIBL2.mjs";
|
|
100
|
-
import {
|
|
101
|
-
releaseVersionGeneratorFn
|
|
102
|
-
} from "./chunk-5OWPWITA.mjs";
|
|
103
100
|
import {
|
|
104
101
|
presetGeneratorFn
|
|
105
102
|
} from "./chunk-PUW5GKBJ.mjs";
|
|
103
|
+
import {
|
|
104
|
+
releaseVersionGeneratorFn
|
|
105
|
+
} from "./chunk-5OWPWITA.mjs";
|
|
106
106
|
import {
|
|
107
107
|
browserLibraryGeneratorFn
|
|
108
108
|
} from "./chunk-FQSPQRIB.mjs";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkTLFV74ZVjs = require('../../../chunk-TLFV74ZV.js');
|
|
5
5
|
require('../../../chunk-IVNDY2FE.js');
|
|
6
6
|
require('../../../chunk-UALZJZUK.js');
|
|
7
7
|
require('../../../chunk-SPRQWSBE.js');
|
|
@@ -11,4 +11,4 @@ require('../../../chunk-3GQAWCBQ.js');
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
exports.default =
|
|
14
|
+
exports.default = _chunkTLFV74ZVjs.executor_default; exports.esbuildExecutorFn = _chunkTLFV74ZVjs.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.20",
|
|
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",
|