@storm-software/workspace-tools 1.275.2 → 1.275.4
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 +28 -0
- package/README.md +1 -1
- package/dist/{chunk-RYDK6CRU.mjs → chunk-4QW3OMHR.mjs} +2 -3
- package/dist/{chunk-BLFV7JR3.js → chunk-YESFV7BQ.js} +8 -9
- package/dist/executors.js +2 -2
- package/dist/executors.mjs +1 -1
- package/dist/index.js +2 -2
- package/dist/index.mjs +1 -1
- 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,34 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Workspace Tools
|
|
4
4
|
|
|
5
|
+
## [1.275.3](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.275.3) (2025-06-05)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate README markdown files
|
|
10
|
+
|
|
11
|
+
### Updated Dependencies
|
|
12
|
+
|
|
13
|
+
- Updated prettier to 0.51.16
|
|
14
|
+
- Updated esbuild to 0.44.3
|
|
15
|
+
- Updated esbuild to 0.44.3
|
|
16
|
+
- Updated unbuild to 0.49.3
|
|
17
|
+
- Updated unbuild to 0.49.3
|
|
18
|
+
|
|
19
|
+
## [1.275.2](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.275.2) (2025-06-05)
|
|
20
|
+
|
|
21
|
+
### Miscellaneous
|
|
22
|
+
|
|
23
|
+
- **monorepo:** Update workspace packages and README markdown
|
|
24
|
+
|
|
25
|
+
### Updated Dependencies
|
|
26
|
+
|
|
27
|
+
- Updated prettier to 0.51.15
|
|
28
|
+
- Updated esbuild to 0.44.2
|
|
29
|
+
- Updated esbuild to 0.44.2
|
|
30
|
+
- Updated unbuild to 0.49.2
|
|
31
|
+
- Updated unbuild to 0.49.2
|
|
32
|
+
|
|
5
33
|
## [1.275.1](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.275.1) (2025-06-04)
|
|
6
34
|
|
|
7
35
|
### 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 -->
|
|
@@ -303,9 +303,9 @@ import {
|
|
|
303
303
|
|
|
304
304
|
// ../esbuild/src/assets.ts
|
|
305
305
|
async function copyBuildAssets(context) {
|
|
306
|
-
if (context.result?.errors.length
|
|
306
|
+
if (!context.result?.errors.length && context.options.assets?.length) {
|
|
307
307
|
writeDebug(
|
|
308
|
-
` \u{1F4CB} Copying asset files to output directory: ${context.outputPath}`,
|
|
308
|
+
` \u{1F4CB} Copying ${context.options.assets.length} asset files to output directory: ${context.outputPath}`,
|
|
309
309
|
context.workspaceConfig
|
|
310
310
|
);
|
|
311
311
|
const stopwatch = getStopwatch(`${context.options.name} asset copy`);
|
|
@@ -341,7 +341,6 @@ import { findWorkspaceRoot as findWorkspaceRoot2 } from "nx/src/utils/find-works
|
|
|
341
341
|
|
|
342
342
|
// ../esbuild/src/config.ts
|
|
343
343
|
var DEFAULT_BUILD_OPTIONS = {
|
|
344
|
-
assets: [],
|
|
345
344
|
platform: "node",
|
|
346
345
|
target: "node22",
|
|
347
346
|
format: "esm",
|
|
@@ -303,9 +303,9 @@ var _createtaskgraph = require('nx/src/tasks-runner/create-task-graph');
|
|
|
303
303
|
|
|
304
304
|
// ../esbuild/src/assets.ts
|
|
305
305
|
async function copyBuildAssets(context) {
|
|
306
|
-
if (_optionalChain([context, 'access', _24 => _24.result, 'optionalAccess', _25 => _25.errors, 'access', _26 => _26.length])
|
|
306
|
+
if (!_optionalChain([context, 'access', _24 => _24.result, 'optionalAccess', _25 => _25.errors, 'access', _26 => _26.length]) && _optionalChain([context, 'access', _27 => _27.options, 'access', _28 => _28.assets, 'optionalAccess', _29 => _29.length])) {
|
|
307
307
|
_chunkCSYOP22Pjs.writeDebug.call(void 0,
|
|
308
|
-
` \u{1F4CB} Copying asset files to output directory: ${context.outputPath}`,
|
|
308
|
+
` \u{1F4CB} Copying ${context.options.assets.length} asset files to output directory: ${context.outputPath}`,
|
|
309
309
|
context.workspaceConfig
|
|
310
310
|
);
|
|
311
311
|
const stopwatch = _chunkCSYOP22Pjs.getStopwatch.call(void 0, `${context.options.name} asset copy`);
|
|
@@ -341,7 +341,6 @@ var _findworkspaceroot = require('nx/src/utils/find-workspace-root');
|
|
|
341
341
|
|
|
342
342
|
// ../esbuild/src/config.ts
|
|
343
343
|
var DEFAULT_BUILD_OPTIONS = {
|
|
344
|
-
assets: [],
|
|
345
344
|
platform: "node",
|
|
346
345
|
target: "node22",
|
|
347
346
|
format: "esm",
|
|
@@ -411,7 +410,7 @@ async function resolveContext(userOptions) {
|
|
|
411
410
|
const projectJson = JSON.parse(projectJsonFile);
|
|
412
411
|
const projectName = projectJson.name || userOptions.name;
|
|
413
412
|
const projectConfigurations = _devkit.readProjectsConfigurationFromProjectGraph.call(void 0, projectGraph);
|
|
414
|
-
if (!_optionalChain([projectConfigurations, 'optionalAccess',
|
|
413
|
+
if (!_optionalChain([projectConfigurations, 'optionalAccess', _30 => _30.projects, 'optionalAccess', _31 => _31[projectName]])) {
|
|
415
414
|
throw new Error(
|
|
416
415
|
"The Build process failed because the project does not have a valid configuration in the project.json file. Check if the file exists in the root of the project."
|
|
417
416
|
);
|
|
@@ -706,7 +705,7 @@ async function executeTsup(context) {
|
|
|
706
705
|
|
|
707
706
|
// ../esbuild/src/build.ts
|
|
708
707
|
async function reportResults(context) {
|
|
709
|
-
if (_optionalChain([context, 'access',
|
|
708
|
+
if (_optionalChain([context, 'access', _32 => _32.result, 'optionalAccess', _33 => _33.errors, 'access', _34 => _34.length]) === 0) {
|
|
710
709
|
if (context.result.warnings.length > 0) {
|
|
711
710
|
_chunkCSYOP22Pjs.writeWarning.call(void 0,
|
|
712
711
|
` \u{1F6A7} The following warnings occurred during the build: ${context.result.warnings.map((warning) => warning.text).join("\n")}`,
|
|
@@ -717,7 +716,7 @@ async function reportResults(context) {
|
|
|
717
716
|
` \u{1F4E6} The ${context.options.name} build completed successfully`,
|
|
718
717
|
context.workspaceConfig
|
|
719
718
|
);
|
|
720
|
-
} else if (_optionalChain([context, 'access',
|
|
719
|
+
} else if (_optionalChain([context, 'access', _35 => _35.result, 'optionalAccess', _36 => _36.errors]) && _optionalChain([context, 'access', _37 => _37.result, 'optionalAccess', _38 => _38.errors, 'access', _39 => _39.length]) > 0) {
|
|
721
720
|
_chunkCSYOP22Pjs.writeError.call(void 0,
|
|
722
721
|
` \u274C The ${context.options.name} build failed with the following errors: ${context.result.errors.map((error) => error.text).join("\n")}`,
|
|
723
722
|
context.workspaceConfig
|
|
@@ -796,16 +795,16 @@ async function build2(options) {
|
|
|
796
795
|
// src/executors/esbuild/executor.ts
|
|
797
796
|
async function esbuildExecutorFn(options, context, config) {
|
|
798
797
|
_chunkCSYOP22Pjs.writeInfo.call(void 0, "\u{1F4E6} Running Storm ESBuild executor on the workspace", config);
|
|
799
|
-
if (!_optionalChain([context, 'access',
|
|
798
|
+
if (!_optionalChain([context, 'access', _40 => _40.projectsConfigurations, 'optionalAccess', _41 => _41.projects]) || !context.projectName || !context.projectsConfigurations.projects[context.projectName] || !_optionalChain([context, 'access', _42 => _42.projectsConfigurations, 'access', _43 => _43.projects, 'access', _44 => _44[context.projectName], 'optionalAccess', _45 => _45.root])) {
|
|
800
799
|
throw new Error(
|
|
801
800
|
"The Build process failed because the context is not valid. Please run this command from a workspace."
|
|
802
801
|
);
|
|
803
802
|
}
|
|
804
803
|
await build2({
|
|
805
804
|
...options,
|
|
806
|
-
projectRoot: _optionalChain([context, 'access',
|
|
805
|
+
projectRoot: _optionalChain([context, 'access', _46 => _46.projectsConfigurations, 'access', _47 => _47.projects, 'optionalAccess', _48 => _48[context.projectName], 'access', _49 => _49.root]),
|
|
807
806
|
name: context.projectName,
|
|
808
|
-
sourceRoot: _optionalChain([context, 'access',
|
|
807
|
+
sourceRoot: _optionalChain([context, 'access', _50 => _50.projectsConfigurations, 'access', _51 => _51.projects, 'optionalAccess', _52 => _52[context.projectName], 'optionalAccess', _53 => _53.sourceRoot]),
|
|
809
808
|
format: options.format,
|
|
810
809
|
platform: options.format
|
|
811
810
|
});
|
package/dist/executors.js
CHANGED
|
@@ -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 _chunkYESFV7BQjs = require('./chunk-YESFV7BQ.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 = _chunkYESFV7BQjs.esbuildExecutorFn; exports.getRegistryVersion = _chunk6X3ZLBG2js.getRegistryVersion; exports.sizeLimitExecutorFn = _chunkCTWNTX3Jjs.sizeLimitExecutorFn; exports.typiaExecutorFn = _chunkAALD7ZEVjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkFG3RQ2OVjs.unbuildExecutorFn;
|
package/dist/executors.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -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 _chunkYESFV7BQjs = require('./chunk-YESFV7BQ.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 = _chunkYESFV7BQjs.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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkYESFV7BQjs = require('../../../chunk-YESFV7BQ.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 = _chunkYESFV7BQjs.executor_default; exports.esbuildExecutorFn = _chunkYESFV7BQjs.esbuildExecutorFn;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/workspace-tools",
|
|
3
|
-
"version": "1.275.
|
|
3
|
+
"version": "1.275.4",
|
|
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.44.
|
|
212
|
-
"@storm-software/prettier": "^0.51.
|
|
213
|
-
"@storm-software/unbuild": "^0.49.
|
|
211
|
+
"@storm-software/esbuild": "^0.44.4",
|
|
212
|
+
"@storm-software/prettier": "^0.51.17",
|
|
213
|
+
"@storm-software/unbuild": "^0.49.4",
|
|
214
214
|
"fs-extra": "11.2.0",
|
|
215
215
|
"glob": "^11.0.1",
|
|
216
216
|
"jiti": "^2.4.2",
|