@storm-software/workspace-tools 1.274.0 → 1.274.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 +27 -0
- package/README.md +1 -1
- package/dist/{chunk-JQE6CQLQ.js → chunk-BLFV7JR3.js} +9 -0
- package/dist/{chunk-HSBG3ZLM.mjs → chunk-CYB4DAJY.mjs} +9 -0
- package/dist/executors.js +4 -4
- package/dist/executors.mjs +4 -4
- 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 +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,33 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Workspace Tools
|
|
4
4
|
|
|
5
|
+
## [1.274.1](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.274.1) (2025-05-25)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate README markdown files
|
|
10
|
+
|
|
11
|
+
### Updated Dependencies
|
|
12
|
+
|
|
13
|
+
- Updated prettier to 0.51.9
|
|
14
|
+
- Updated esbuild to 0.43.0
|
|
15
|
+
- Updated esbuild to 0.43.0
|
|
16
|
+
- Updated unbuild to 0.48.1
|
|
17
|
+
- Updated unbuild to 0.48.1
|
|
18
|
+
|
|
19
|
+
## [1.274.0](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.274.0) (2025-05-25)
|
|
20
|
+
|
|
21
|
+
### Features
|
|
22
|
+
|
|
23
|
+
- **config:** Added a default errors URL to Storm Software's preset
|
|
24
|
+
|
|
25
|
+
### Updated Dependencies
|
|
26
|
+
|
|
27
|
+
- Updated esbuild to 0.42.0
|
|
28
|
+
- Updated esbuild to 0.42.0
|
|
29
|
+
- Updated unbuild to 0.48.0
|
|
30
|
+
- Updated unbuild to 0.48.0
|
|
31
|
+
|
|
5
32
|
## [1.273.10](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.273.10) (2025-05-18)
|
|
6
33
|
|
|
7
34
|
### 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 -->
|
|
@@ -13,6 +13,7 @@ var _chunkTP4TN5V3js = require('./chunk-TP4TN5V3.js');
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
|
|
16
17
|
var _chunkCSYOP22Pjs = require('./chunk-CSYOP22P.js');
|
|
17
18
|
|
|
18
19
|
|
|
@@ -463,6 +464,14 @@ async function resolveContext(userOptions) {
|
|
|
463
464
|
minify: resolvedOptions.minify || resolvedOptions.mode === "production"
|
|
464
465
|
};
|
|
465
466
|
context.options.esbuildPlugins = [..._nullishCoalesce(context.options.esbuildPlugins, () => ( []))];
|
|
467
|
+
if (context.options.verbose) {
|
|
468
|
+
_chunkCSYOP22Pjs.writeDebug.call(void 0,
|
|
469
|
+
` \u2699\uFE0F Build options resolved:
|
|
470
|
+
|
|
471
|
+
${_chunkCSYOP22Pjs.formatLogMessage.call(void 0, context.options)}`,
|
|
472
|
+
workspaceConfig
|
|
473
|
+
);
|
|
474
|
+
}
|
|
466
475
|
return context;
|
|
467
476
|
}
|
|
468
477
|
|
|
@@ -5,6 +5,7 @@ import {
|
|
|
5
5
|
getWorkspaceConfig
|
|
6
6
|
} from "./chunk-C4XOCICR.mjs";
|
|
7
7
|
import {
|
|
8
|
+
formatLogMessage,
|
|
8
9
|
getStopwatch,
|
|
9
10
|
writeDebug,
|
|
10
11
|
writeError,
|
|
@@ -463,6 +464,14 @@ async function resolveContext(userOptions) {
|
|
|
463
464
|
minify: resolvedOptions.minify || resolvedOptions.mode === "production"
|
|
464
465
|
};
|
|
465
466
|
context.options.esbuildPlugins = [...context.options.esbuildPlugins ?? []];
|
|
467
|
+
if (context.options.verbose) {
|
|
468
|
+
writeDebug(
|
|
469
|
+
` \u2699\uFE0F Build options resolved:
|
|
470
|
+
|
|
471
|
+
${formatLogMessage(context.options)}`,
|
|
472
|
+
workspaceConfig
|
|
473
|
+
);
|
|
474
|
+
}
|
|
466
475
|
return context;
|
|
467
476
|
}
|
|
468
477
|
|
package/dist/executors.js
CHANGED
|
@@ -7,10 +7,10 @@ var _chunkJ43B54ZWjs = require('./chunk-J43B54ZW.js');
|
|
|
7
7
|
var _chunkCTWNTX3Jjs = require('./chunk-CTWNTX3J.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
var
|
|
10
|
+
var _chunkAALD7ZEVjs = require('./chunk-AALD7ZEV.js');
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
var
|
|
13
|
+
var _chunkFG3RQ2OVjs = require('./chunk-FG3RQ2OV.js');
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
var _chunk2XAKOAWZjs = require('./chunk-2XAKOAWZ.js');
|
|
@@ -19,7 +19,7 @@ var _chunk2XAKOAWZjs = require('./chunk-2XAKOAWZ.js');
|
|
|
19
19
|
var _chunk6X3ZLBG2js = require('./chunk-6X3ZLBG2.js');
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
var
|
|
22
|
+
var _chunkBLFV7JR3js = require('./chunk-BLFV7JR3.js');
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
var _chunk2443J2PMjs = require('./chunk-2443J2PM.js');
|
|
@@ -54,4 +54,4 @@ require('./chunk-3RG5ZIWI.js');
|
|
|
54
54
|
|
|
55
55
|
|
|
56
56
|
|
|
57
|
-
exports.LARGE_BUFFER = _chunkJ43B54ZWjs.LARGE_BUFFER; exports.cargoBuildExecutor = _chunk2443J2PMjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkQBVFFRGMjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkZCP6KEZ3js.cargoClippyExecutor; exports.cargoDocExecutor = _chunkJMRTB4STjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunk2XAKOAWZjs.cargoFormatExecutor; exports.esbuildExecutorFn =
|
|
57
|
+
exports.LARGE_BUFFER = _chunkJ43B54ZWjs.LARGE_BUFFER; exports.cargoBuildExecutor = _chunk2443J2PMjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkQBVFFRGMjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkZCP6KEZ3js.cargoClippyExecutor; exports.cargoDocExecutor = _chunkJMRTB4STjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunk2XAKOAWZjs.cargoFormatExecutor; exports.esbuildExecutorFn = _chunkBLFV7JR3js.esbuildExecutorFn; exports.getRegistryVersion = _chunk6X3ZLBG2js.getRegistryVersion; exports.sizeLimitExecutorFn = _chunkCTWNTX3Jjs.sizeLimitExecutorFn; exports.typiaExecutorFn = _chunkAALD7ZEVjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkFG3RQ2OVjs.unbuildExecutorFn;
|
package/dist/executors.mjs
CHANGED
|
@@ -5,12 +5,12 @@ import {
|
|
|
5
5
|
import {
|
|
6
6
|
sizeLimitExecutorFn
|
|
7
7
|
} from "./chunk-MAJJATNY.mjs";
|
|
8
|
-
import {
|
|
9
|
-
unbuildExecutorFn
|
|
10
|
-
} from "./chunk-R4DNKY7G.mjs";
|
|
11
8
|
import {
|
|
12
9
|
typiaExecutorFn
|
|
13
10
|
} from "./chunk-K3NTMKCM.mjs";
|
|
11
|
+
import {
|
|
12
|
+
unbuildExecutorFn
|
|
13
|
+
} from "./chunk-R4DNKY7G.mjs";
|
|
14
14
|
import {
|
|
15
15
|
cargoFormatExecutor
|
|
16
16
|
} from "./chunk-5E6PGJFN.mjs";
|
|
@@ -19,7 +19,7 @@ import {
|
|
|
19
19
|
} from "./chunk-EO5BEDAY.mjs";
|
|
20
20
|
import {
|
|
21
21
|
esbuildExecutorFn
|
|
22
|
-
} from "./chunk-
|
|
22
|
+
} from "./chunk-CYB4DAJY.mjs";
|
|
23
23
|
import {
|
|
24
24
|
cargoBuildExecutor
|
|
25
25
|
} from "./chunk-33SPJY5N.mjs";
|
package/dist/index.js
CHANGED
|
@@ -54,10 +54,10 @@ var _chunkJ43B54ZWjs = require('./chunk-J43B54ZW.js');
|
|
|
54
54
|
var _chunkCTWNTX3Jjs = require('./chunk-CTWNTX3J.js');
|
|
55
55
|
|
|
56
56
|
|
|
57
|
-
var
|
|
57
|
+
var _chunkAALD7ZEVjs = require('./chunk-AALD7ZEV.js');
|
|
58
58
|
|
|
59
59
|
|
|
60
|
-
var
|
|
60
|
+
var _chunkFG3RQ2OVjs = require('./chunk-FG3RQ2OV.js');
|
|
61
61
|
|
|
62
62
|
|
|
63
63
|
var _chunk2XAKOAWZjs = require('./chunk-2XAKOAWZ.js');
|
|
@@ -66,7 +66,7 @@ var _chunk2XAKOAWZjs = require('./chunk-2XAKOAWZ.js');
|
|
|
66
66
|
var _chunk6X3ZLBG2js = require('./chunk-6X3ZLBG2.js');
|
|
67
67
|
|
|
68
68
|
|
|
69
|
-
var
|
|
69
|
+
var _chunkBLFV7JR3js = require('./chunk-BLFV7JR3.js');
|
|
70
70
|
|
|
71
71
|
|
|
72
72
|
var _chunk2443J2PMjs = require('./chunk-2443J2PM.js');
|
|
@@ -272,4 +272,4 @@ require('./chunk-3RG5ZIWI.js');
|
|
|
272
272
|
|
|
273
273
|
|
|
274
274
|
|
|
275
|
-
exports.INVALID_CARGO_ARGS = _chunkLJDV7HFTjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkJ43B54ZWjs.LARGE_BUFFER; exports.LOCK_FILES = _chunkXZSS3YABjs.LOCK_FILES; exports.NPM_LOCK_FILE = _chunkXZSS3YABjs.NPM_LOCK_FILE; exports.NPM_LOCK_PATH = _chunkXZSS3YABjs.NPM_LOCK_PATH; exports.PNPM_LOCK_FILE = _chunkXZSS3YABjs.PNPM_LOCK_FILE; exports.PNPM_LOCK_PATH = _chunkXZSS3YABjs.PNPM_LOCK_PATH; exports.PackageManagerTypes = _chunkMBEN52IIjs.PackageManagerTypes; exports.ProjectTagConstants = _chunkAX3RSZT7js.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 = _chunkXZSS3YABjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkXZSS3YABjs.YARN_LOCK_PATH; exports.addPluginProjectTag = _chunkAX3RSZT7js.addPluginProjectTag; exports.addProjectTag = _chunkAX3RSZT7js.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunk3TYXXJKVjs.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunkBVE3BYKPjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkLJDV7HFTjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk5ZFTWEKBjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunk2443J2PMjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkQBVFFRGMjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkZCP6KEZ3js.cargoClippyExecutor; exports.cargoCommand = _chunkLJDV7HFTjs.cargoCommand; exports.cargoCommandSync = _chunkLJDV7HFTjs.cargoCommandSync; exports.cargoDocExecutor = _chunkJMRTB4STjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunk2XAKOAWZjs.cargoFormatExecutor; exports.cargoMetadata = _chunkLJDV7HFTjs.cargoMetadata; exports.cargoRunCommand = _chunkLJDV7HFTjs.cargoRunCommand; exports.childProcess = _chunkLJDV7HFTjs.childProcess; exports.configSchemaGeneratorFn = _chunkFOCRXFSZjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkQVYCDINGjs.createCliOptions; exports.createProjectTsConfigJson = _chunkU3YH5M4Ljs.createProjectTsConfigJson; exports.esbuildExecutorFn =
|
|
275
|
+
exports.INVALID_CARGO_ARGS = _chunkLJDV7HFTjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkJ43B54ZWjs.LARGE_BUFFER; exports.LOCK_FILES = _chunkXZSS3YABjs.LOCK_FILES; exports.NPM_LOCK_FILE = _chunkXZSS3YABjs.NPM_LOCK_FILE; exports.NPM_LOCK_PATH = _chunkXZSS3YABjs.NPM_LOCK_PATH; exports.PNPM_LOCK_FILE = _chunkXZSS3YABjs.PNPM_LOCK_FILE; exports.PNPM_LOCK_PATH = _chunkXZSS3YABjs.PNPM_LOCK_PATH; exports.PackageManagerTypes = _chunkMBEN52IIjs.PackageManagerTypes; exports.ProjectTagConstants = _chunkAX3RSZT7js.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 = _chunkXZSS3YABjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkXZSS3YABjs.YARN_LOCK_PATH; exports.addPluginProjectTag = _chunkAX3RSZT7js.addPluginProjectTag; exports.addProjectTag = _chunkAX3RSZT7js.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunk3TYXXJKVjs.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunkBVE3BYKPjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkLJDV7HFTjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk5ZFTWEKBjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunk2443J2PMjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkQBVFFRGMjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkZCP6KEZ3js.cargoClippyExecutor; exports.cargoCommand = _chunkLJDV7HFTjs.cargoCommand; exports.cargoCommandSync = _chunkLJDV7HFTjs.cargoCommandSync; exports.cargoDocExecutor = _chunkJMRTB4STjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunk2XAKOAWZjs.cargoFormatExecutor; exports.cargoMetadata = _chunkLJDV7HFTjs.cargoMetadata; exports.cargoRunCommand = _chunkLJDV7HFTjs.cargoRunCommand; exports.childProcess = _chunkLJDV7HFTjs.childProcess; exports.configSchemaGeneratorFn = _chunkFOCRXFSZjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkQVYCDINGjs.createCliOptions; exports.createProjectTsConfigJson = _chunkU3YH5M4Ljs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunkBLFV7JR3js.esbuildExecutorFn; exports.eslintVersion = _chunkHI4G4OOGjs.eslintVersion; exports.formatProjectTag = _chunkAX3RSZT7js.formatProjectTag; exports.getLockFileDependencies = _chunkXZSS3YABjs.getLockFileDependencies; exports.getLockFileName = _chunkXZSS3YABjs.getLockFileName; exports.getLockFileNodes = _chunkXZSS3YABjs.getLockFileNodes; exports.getOutputPath = _chunkU3YH5M4Ljs.getOutputPath; exports.getPackageInfo = _chunkMBEN52IIjs.getPackageInfo; exports.getProjectConfigFromProjectJsonPath = _chunk5VY5IBBQjs.getProjectConfigFromProjectJsonPath; exports.getProjectConfigFromProjectRoot = _chunk5VY5IBBQjs.getProjectConfigFromProjectRoot; exports.getProjectConfiguration = _chunkA5CKB6IJjs.getProjectConfiguration; exports.getProjectConfigurations = _chunkA5CKB6IJjs.getProjectConfigurations; exports.getProjectPlatform = _chunk5VY5IBBQjs.getProjectPlatform; exports.getProjectRoot = _chunk5VY5IBBQjs.getProjectRoot; exports.getProjectTag = _chunkAX3RSZT7js.getProjectTag; exports.getRegistryVersion = _chunk6X3ZLBG2js.getRegistryVersion; exports.getTypiaTransform = _chunk6EMYX25Vjs.getTypiaTransform; exports.hasProjectTag = _chunkAX3RSZT7js.hasProjectTag; exports.initGenerator = _chunkOKSECMVKjs.initGenerator; exports.isEqualProjectTag = _chunkAX3RSZT7js.isEqualProjectTag; exports.isExternal = _chunkLJDV7HFTjs.isExternal; exports.lintStagedVersion = _chunkHI4G4OOGjs.lintStagedVersion; exports.lockFileExists = _chunkXZSS3YABjs.lockFileExists; exports.neutralLibraryGeneratorFn = _chunkWJDCZZ4Ljs.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunkVF5EUZOLjs.nodeLibraryGeneratorFn; exports.nodeVersion = _chunkHI4G4OOGjs.nodeVersion; exports.normalizeOptions = _chunkU3YH5M4Ljs.normalizeOptions; exports.nxVersion = _chunkHI4G4OOGjs.nxVersion; exports.pnpmUpdate = _chunkF6X43VUXjs.pnpmUpdate; exports.pnpmVersion = _chunkHI4G4OOGjs.pnpmVersion; exports.presetGeneratorFn = _chunk222WOWGJjs.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkHI4G4OOGjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkHI4G4OOGjs.prettierPrismaVersion; exports.prettierVersion = _chunkHI4G4OOGjs.prettierVersion; exports.releaseVersionGeneratorFn = _chunkF6TLFN34js.releaseVersionGeneratorFn; exports.runProcess = _chunkLJDV7HFTjs.runProcess; exports.semanticReleaseVersion = _chunkHI4G4OOGjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunkAX3RSZT7js.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunkCTWNTX3Jjs.sizeLimitExecutorFn; 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 = _chunkU3YH5M4Ljs.typeScriptLibraryGeneratorFn; exports.typesNodeVersion = _chunkHI4G4OOGjs.typesNodeVersion; exports.typescriptBuildExecutorSchema = _chunkCLMAB7TAjs.typescript_build_executor_untyped_default; exports.typescriptLibraryGeneratorSchema = _chunk2AVWFUXPjs.typescript_library_generator_untyped_default; exports.typescriptVersion = _chunkHI4G4OOGjs.typescriptVersion; exports.typiaExecutorFn = _chunkAALD7ZEVjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkFG3RQ2OVjs.unbuildExecutorFn; exports.verdaccioVersion = _chunkHI4G4OOGjs.verdaccioVersion; exports.withRunExecutor = _chunkA2XTQR6Njs.withRunExecutor; exports.withRunGenerator = _chunk4PBELSTLjs.withRunGenerator;
|
package/dist/index.mjs
CHANGED
|
@@ -52,12 +52,12 @@ import {
|
|
|
52
52
|
import {
|
|
53
53
|
sizeLimitExecutorFn
|
|
54
54
|
} from "./chunk-MAJJATNY.mjs";
|
|
55
|
-
import {
|
|
56
|
-
unbuildExecutorFn
|
|
57
|
-
} from "./chunk-R4DNKY7G.mjs";
|
|
58
55
|
import {
|
|
59
56
|
typiaExecutorFn
|
|
60
57
|
} from "./chunk-K3NTMKCM.mjs";
|
|
58
|
+
import {
|
|
59
|
+
unbuildExecutorFn
|
|
60
|
+
} from "./chunk-R4DNKY7G.mjs";
|
|
61
61
|
import {
|
|
62
62
|
cargoFormatExecutor
|
|
63
63
|
} from "./chunk-5E6PGJFN.mjs";
|
|
@@ -66,7 +66,7 @@ import {
|
|
|
66
66
|
} from "./chunk-EO5BEDAY.mjs";
|
|
67
67
|
import {
|
|
68
68
|
esbuildExecutorFn
|
|
69
|
-
} from "./chunk-
|
|
69
|
+
} from "./chunk-CYB4DAJY.mjs";
|
|
70
70
|
import {
|
|
71
71
|
cargoBuildExecutor
|
|
72
72
|
} from "./chunk-33SPJY5N.mjs";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkBLFV7JR3js = require('../../../chunk-BLFV7JR3.js');
|
|
5
5
|
require('../../../chunk-A2XTQR6N.js');
|
|
6
6
|
require('../../../chunk-J2Z4WP3E.js');
|
|
7
7
|
require('../../../chunk-TP4TN5V3.js');
|
|
@@ -12,4 +12,4 @@ require('../../../chunk-3RG5ZIWI.js');
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
exports.default =
|
|
15
|
+
exports.default = _chunkBLFV7JR3js.executor_default; exports.esbuildExecutorFn = _chunkBLFV7JR3js.esbuildExecutorFn;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/workspace-tools",
|
|
3
|
-
"version": "1.274.
|
|
3
|
+
"version": "1.274.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",
|
|
@@ -208,9 +208,9 @@
|
|
|
208
208
|
"@size-limit/esbuild": "11.1.4",
|
|
209
209
|
"@size-limit/esbuild-why": "11.1.4",
|
|
210
210
|
"@size-limit/file": "11.1.4",
|
|
211
|
-
"@storm-software/esbuild": "^0.
|
|
212
|
-
"@storm-software/prettier": "^0.51.
|
|
213
|
-
"@storm-software/unbuild": "^0.48.
|
|
211
|
+
"@storm-software/esbuild": "^0.43.1",
|
|
212
|
+
"@storm-software/prettier": "^0.51.9",
|
|
213
|
+
"@storm-software/unbuild": "^0.48.2",
|
|
214
214
|
"fs-extra": "11.2.0",
|
|
215
215
|
"glob": "^11.0.1",
|
|
216
216
|
"jiti": "^2.4.2",
|