@storm-software/workspace-tools 1.267.21 → 1.267.22
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 +9 -0
- package/README.md +1 -2
- package/dist/{chunk-CWBHZBTN.js → chunk-DCPKZRRY.js} +7 -57
- package/dist/{chunk-ZT4IIRQF.mjs → chunk-J6OXY3KI.mjs} +3 -53
- package/dist/executors.js +5 -5
- package/dist/executors.mjs +6 -6
- package/dist/generators.js +2 -2
- package/dist/generators.mjs +3 -3
- package/dist/index.js +7 -7
- package/dist/index.mjs +9 -9
- 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,15 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Workspace Tools
|
|
4
4
|
|
|
5
|
+
## [1.267.22](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.267.22) (2025-04-30)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **esbuild:** Remove swc plugin for ESBuild
|
|
10
|
+
([ad298c288](https://github.com/storm-software/storm-ops/commit/ad298c288))
|
|
11
|
+
- **monorepo:** Regenerate README markdown files
|
|
12
|
+
([933d45f0b](https://github.com/storm-software/storm-ops/commit/933d45f0b))
|
|
13
|
+
|
|
5
14
|
## [1.267.21](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.267.21) (2025-04-30)
|
|
6
15
|
|
|
7
16
|
### 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,7 +40,6 @@ 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
|
-
|
|
44
43
|
## Table of Contents
|
|
45
44
|
|
|
46
45
|
- [Storm Workspace Tools](#storm-workspace-tools)
|
|
@@ -381,53 +381,6 @@ var DEFAULT_BUILD_OPTIONS = {
|
|
|
381
381
|
}
|
|
382
382
|
};
|
|
383
383
|
|
|
384
|
-
// ../esbuild/src/plugins/resolve-paths.ts
|
|
385
|
-
|
|
386
|
-
function resolvePathsConfig(options, cwd, projectRoot) {
|
|
387
|
-
if (_optionalChain([options, 'optionalAccess', _27 => _27.compilerOptions, 'optionalAccess', _28 => _28.paths])) {
|
|
388
|
-
const paths = Object.entries(options.compilerOptions.paths);
|
|
389
|
-
const resolvedPaths = paths.map(([key, paths2]) => {
|
|
390
|
-
return [key, paths2.map((v) => _path2.default.resolve(cwd, v))];
|
|
391
|
-
});
|
|
392
|
-
return Object.fromEntries(resolvedPaths);
|
|
393
|
-
}
|
|
394
|
-
if (options.extends) {
|
|
395
|
-
const extendsPath = _path2.default.resolve(
|
|
396
|
-
projectRoot ? _chunk53DNHF7Bjs.joinPaths.call(void 0, cwd, projectRoot, options.extends) : _chunk53DNHF7Bjs.joinPaths.call(void 0, cwd, options.extends)
|
|
397
|
-
);
|
|
398
|
-
const extendsDir = _path2.default.dirname(extendsPath);
|
|
399
|
-
const extendsConfig = _chunk3RG5ZIWIjs.__require.call(void 0, extendsPath);
|
|
400
|
-
return resolvePathsConfig(extendsConfig, extendsDir);
|
|
401
|
-
}
|
|
402
|
-
return [];
|
|
403
|
-
}
|
|
404
|
-
var resolvePathsPlugin = (context) => ({
|
|
405
|
-
name: "storm:resolve-paths",
|
|
406
|
-
setup(build3) {
|
|
407
|
-
const parentTsConfig = build3.initialOptions.tsconfig ? _chunk3RG5ZIWIjs.__require.call(void 0, _chunk53DNHF7Bjs.joinPaths.call(void 0,
|
|
408
|
-
context.workspaceConfig.workspaceRoot,
|
|
409
|
-
build3.initialOptions.tsconfig.replace(
|
|
410
|
-
context.workspaceConfig.workspaceRoot,
|
|
411
|
-
""
|
|
412
|
-
)
|
|
413
|
-
)) : _chunk3RG5ZIWIjs.__require.call(void 0, _chunk53DNHF7Bjs.joinPaths.call(void 0, context.workspaceConfig.workspaceRoot, "tsconfig.json"));
|
|
414
|
-
const resolvedTsPaths = resolvePathsConfig(
|
|
415
|
-
parentTsConfig,
|
|
416
|
-
context.workspaceConfig.workspaceRoot,
|
|
417
|
-
context.options.projectRoot
|
|
418
|
-
);
|
|
419
|
-
const packagesRegex = new RegExp(
|
|
420
|
-
`^(${Object.keys(resolvedTsPaths).join("|")})$`
|
|
421
|
-
);
|
|
422
|
-
build3.onResolve({ filter: packagesRegex }, (args) => {
|
|
423
|
-
if (_optionalChain([build3, 'access', _29 => _29.initialOptions, 'access', _30 => _30.external, 'optionalAccess', _31 => _31.includes, 'call', _32 => _32(args.path)])) {
|
|
424
|
-
return { path: args.path, external: true };
|
|
425
|
-
}
|
|
426
|
-
return { path: `${resolvedTsPaths[args.path][0]}/index.ts` };
|
|
427
|
-
});
|
|
428
|
-
}
|
|
429
|
-
});
|
|
430
|
-
|
|
431
384
|
// ../esbuild/src/context.ts
|
|
432
385
|
async function resolveContext(userOptions) {
|
|
433
386
|
const projectRoot = userOptions.projectRoot;
|
|
@@ -455,7 +408,7 @@ async function resolveContext(userOptions) {
|
|
|
455
408
|
const projectJson = JSON.parse(projectJsonFile);
|
|
456
409
|
const projectName = projectJson.name || userOptions.name;
|
|
457
410
|
const projectConfigurations = _devkit.readProjectsConfigurationFromProjectGraph.call(void 0, projectGraph);
|
|
458
|
-
if (!_optionalChain([projectConfigurations, 'optionalAccess',
|
|
411
|
+
if (!_optionalChain([projectConfigurations, 'optionalAccess', _27 => _27.projects, 'optionalAccess', _28 => _28[projectName]])) {
|
|
459
412
|
throw new Error(
|
|
460
413
|
"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."
|
|
461
414
|
);
|
|
@@ -507,10 +460,7 @@ async function resolveContext(userOptions) {
|
|
|
507
460
|
),
|
|
508
461
|
minify: resolvedOptions.minify || resolvedOptions.mode === "production"
|
|
509
462
|
};
|
|
510
|
-
context.options.esbuildPlugins = [
|
|
511
|
-
resolvePathsPlugin(context),
|
|
512
|
-
..._nullishCoalesce(context.options.esbuildPlugins, () => ( []))
|
|
513
|
-
];
|
|
463
|
+
context.options.esbuildPlugins = [..._nullishCoalesce(context.options.esbuildPlugins, () => ( []))];
|
|
514
464
|
return context;
|
|
515
465
|
}
|
|
516
466
|
|
|
@@ -745,7 +695,7 @@ async function executeTsup(context) {
|
|
|
745
695
|
|
|
746
696
|
// ../esbuild/src/build.ts
|
|
747
697
|
async function reportResults(context) {
|
|
748
|
-
if (_optionalChain([context, 'access',
|
|
698
|
+
if (_optionalChain([context, 'access', _29 => _29.result, 'optionalAccess', _30 => _30.errors, 'access', _31 => _31.length]) === 0) {
|
|
749
699
|
if (context.result.warnings.length > 0) {
|
|
750
700
|
_chunkWE4HK4RNjs.writeWarning.call(void 0,
|
|
751
701
|
` \u{1F6A7} The following warnings occurred during the build: ${context.result.warnings.map((warning) => warning.text).join("\n")}`,
|
|
@@ -756,7 +706,7 @@ async function reportResults(context) {
|
|
|
756
706
|
` \u{1F4E6} The ${context.options.name} build completed successfully`,
|
|
757
707
|
context.workspaceConfig
|
|
758
708
|
);
|
|
759
|
-
} else if (_optionalChain([context, 'access',
|
|
709
|
+
} else if (_optionalChain([context, 'access', _32 => _32.result, 'optionalAccess', _33 => _33.errors]) && _optionalChain([context, 'access', _34 => _34.result, 'optionalAccess', _35 => _35.errors, 'access', _36 => _36.length]) > 0) {
|
|
760
710
|
_chunkWE4HK4RNjs.writeError.call(void 0,
|
|
761
711
|
` \u274C The ${context.options.name} build failed with the following errors: ${context.result.errors.map((error) => error.text).join("\n")}`,
|
|
762
712
|
context.workspaceConfig
|
|
@@ -835,16 +785,16 @@ async function build2(options) {
|
|
|
835
785
|
// src/executors/esbuild/executor.ts
|
|
836
786
|
async function esbuildExecutorFn(options, context, config) {
|
|
837
787
|
_chunkWE4HK4RNjs.writeInfo.call(void 0, "\u{1F4E6} Running Storm ESBuild executor on the workspace", config);
|
|
838
|
-
if (!_optionalChain([context, 'access',
|
|
788
|
+
if (!_optionalChain([context, 'access', _37 => _37.projectsConfigurations, 'optionalAccess', _38 => _38.projects]) || !context.projectName || !context.projectsConfigurations.projects[context.projectName] || !_optionalChain([context, 'access', _39 => _39.projectsConfigurations, 'access', _40 => _40.projects, 'access', _41 => _41[context.projectName], 'optionalAccess', _42 => _42.root])) {
|
|
839
789
|
throw new Error(
|
|
840
790
|
"The Build process failed because the context is not valid. Please run this command from a workspace."
|
|
841
791
|
);
|
|
842
792
|
}
|
|
843
793
|
await build2({
|
|
844
794
|
...options,
|
|
845
|
-
projectRoot: _optionalChain([context, 'access',
|
|
795
|
+
projectRoot: _optionalChain([context, 'access', _43 => _43.projectsConfigurations, 'access', _44 => _44.projects, 'optionalAccess', _45 => _45[context.projectName], 'access', _46 => _46.root]),
|
|
846
796
|
name: context.projectName,
|
|
847
|
-
sourceRoot: _optionalChain([context, 'access',
|
|
797
|
+
sourceRoot: _optionalChain([context, 'access', _47 => _47.projectsConfigurations, 'access', _48 => _48.projects, 'optionalAccess', _49 => _49[context.projectName], 'optionalAccess', _50 => _50.sourceRoot]),
|
|
848
798
|
format: options.format,
|
|
849
799
|
platform: options.format
|
|
850
800
|
});
|
|
@@ -381,53 +381,6 @@ var DEFAULT_BUILD_OPTIONS = {
|
|
|
381
381
|
}
|
|
382
382
|
};
|
|
383
383
|
|
|
384
|
-
// ../esbuild/src/plugins/resolve-paths.ts
|
|
385
|
-
import path2 from "node:path";
|
|
386
|
-
function resolvePathsConfig(options, cwd, projectRoot) {
|
|
387
|
-
if (options?.compilerOptions?.paths) {
|
|
388
|
-
const paths = Object.entries(options.compilerOptions.paths);
|
|
389
|
-
const resolvedPaths = paths.map(([key, paths2]) => {
|
|
390
|
-
return [key, paths2.map((v) => path2.resolve(cwd, v))];
|
|
391
|
-
});
|
|
392
|
-
return Object.fromEntries(resolvedPaths);
|
|
393
|
-
}
|
|
394
|
-
if (options.extends) {
|
|
395
|
-
const extendsPath = path2.resolve(
|
|
396
|
-
projectRoot ? joinPaths(cwd, projectRoot, options.extends) : joinPaths(cwd, options.extends)
|
|
397
|
-
);
|
|
398
|
-
const extendsDir = path2.dirname(extendsPath);
|
|
399
|
-
const extendsConfig = __require(extendsPath);
|
|
400
|
-
return resolvePathsConfig(extendsConfig, extendsDir);
|
|
401
|
-
}
|
|
402
|
-
return [];
|
|
403
|
-
}
|
|
404
|
-
var resolvePathsPlugin = (context) => ({
|
|
405
|
-
name: "storm:resolve-paths",
|
|
406
|
-
setup(build3) {
|
|
407
|
-
const parentTsConfig = build3.initialOptions.tsconfig ? __require(joinPaths(
|
|
408
|
-
context.workspaceConfig.workspaceRoot,
|
|
409
|
-
build3.initialOptions.tsconfig.replace(
|
|
410
|
-
context.workspaceConfig.workspaceRoot,
|
|
411
|
-
""
|
|
412
|
-
)
|
|
413
|
-
)) : __require(joinPaths(context.workspaceConfig.workspaceRoot, "tsconfig.json"));
|
|
414
|
-
const resolvedTsPaths = resolvePathsConfig(
|
|
415
|
-
parentTsConfig,
|
|
416
|
-
context.workspaceConfig.workspaceRoot,
|
|
417
|
-
context.options.projectRoot
|
|
418
|
-
);
|
|
419
|
-
const packagesRegex = new RegExp(
|
|
420
|
-
`^(${Object.keys(resolvedTsPaths).join("|")})$`
|
|
421
|
-
);
|
|
422
|
-
build3.onResolve({ filter: packagesRegex }, (args) => {
|
|
423
|
-
if (build3.initialOptions.external?.includes(args.path)) {
|
|
424
|
-
return { path: args.path, external: true };
|
|
425
|
-
}
|
|
426
|
-
return { path: `${resolvedTsPaths[args.path][0]}/index.ts` };
|
|
427
|
-
});
|
|
428
|
-
}
|
|
429
|
-
});
|
|
430
|
-
|
|
431
384
|
// ../esbuild/src/context.ts
|
|
432
385
|
async function resolveContext(userOptions) {
|
|
433
386
|
const projectRoot = userOptions.projectRoot;
|
|
@@ -507,10 +460,7 @@ async function resolveContext(userOptions) {
|
|
|
507
460
|
),
|
|
508
461
|
minify: resolvedOptions.minify || resolvedOptions.mode === "production"
|
|
509
462
|
};
|
|
510
|
-
context.options.esbuildPlugins = [
|
|
511
|
-
resolvePathsPlugin(context),
|
|
512
|
-
...context.options.esbuildPlugins ?? []
|
|
513
|
-
];
|
|
463
|
+
context.options.esbuildPlugins = [...context.options.esbuildPlugins ?? []];
|
|
514
464
|
return context;
|
|
515
465
|
}
|
|
516
466
|
|
|
@@ -646,7 +596,7 @@ async function generatePackageJson(context) {
|
|
|
646
596
|
|
|
647
597
|
// ../esbuild/src/plugins/deps-check.ts
|
|
648
598
|
import { builtinModules as builtinModules2 } from "node:module";
|
|
649
|
-
import
|
|
599
|
+
import path2 from "node:path";
|
|
650
600
|
var unusedIgnore = [
|
|
651
601
|
// these are our dev dependencies
|
|
652
602
|
/@types\/.*?/,
|
|
@@ -675,7 +625,7 @@ var missingIgnore = [".prisma", "@prisma/client", "ts-toolbelt"];
|
|
|
675
625
|
var depsCheckPlugin = (bundle) => ({
|
|
676
626
|
name: "storm:deps-check",
|
|
677
627
|
setup(build3) {
|
|
678
|
-
const pkgJsonPath =
|
|
628
|
+
const pkgJsonPath = path2.join(process.cwd(), "package.json");
|
|
679
629
|
const pkgContents = __require(pkgJsonPath);
|
|
680
630
|
const regDependencies = Object.keys(pkgContents["dependencies"] ?? {});
|
|
681
631
|
const devDependencies = Object.keys(pkgContents["devDependencies"] ?? {});
|
package/dist/executors.js
CHANGED
|
@@ -13,13 +13,13 @@ var _chunkSPXJBMLYjs = require('./chunk-SPXJBMLY.js');
|
|
|
13
13
|
var _chunkEYXDS7SGjs = require('./chunk-EYXDS7SG.js');
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
var
|
|
16
|
+
var _chunkO6RRIC6Ijs = require('./chunk-O6RRIC6I.js');
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
var _chunk54FVHKCUjs = require('./chunk-54FVHKCU.js');
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
var
|
|
22
|
+
var _chunkDCPKZRRYjs = require('./chunk-DCPKZRRY.js');
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
var _chunkTSYIV33Wjs = require('./chunk-TSYIV33W.js');
|
|
@@ -28,10 +28,10 @@ var _chunkTSYIV33Wjs = require('./chunk-TSYIV33W.js');
|
|
|
28
28
|
var _chunkAOFWKOAIjs = require('./chunk-AOFWKOAI.js');
|
|
29
29
|
|
|
30
30
|
|
|
31
|
-
var
|
|
31
|
+
var _chunk22UY7NFXjs = require('./chunk-22UY7NFX.js');
|
|
32
32
|
|
|
33
33
|
|
|
34
|
-
var
|
|
34
|
+
var _chunkEU6N7QT3js = require('./chunk-EU6N7QT3.js');
|
|
35
35
|
require('./chunk-ZP76EMBE.js');
|
|
36
36
|
require('./chunk-4BECJRPP.js');
|
|
37
37
|
require('./chunk-BWGJVRAS.js');
|
|
@@ -53,4 +53,4 @@ require('./chunk-3RG5ZIWI.js');
|
|
|
53
53
|
|
|
54
54
|
|
|
55
55
|
|
|
56
|
-
exports.LARGE_BUFFER = _chunkX2VJXJEFjs.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkTSYIV33Wjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkAOFWKOAIjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkO6RRIC6Ijs.cargoClippyExecutor; exports.cargoDocExecutor = _chunk22UY7NFXjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkEU6N7QT3js.cargoFormatExecutor; exports.esbuildExecutorFn =
|
|
56
|
+
exports.LARGE_BUFFER = _chunkX2VJXJEFjs.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkTSYIV33Wjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkAOFWKOAIjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkO6RRIC6Ijs.cargoClippyExecutor; exports.cargoDocExecutor = _chunk22UY7NFXjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkEU6N7QT3js.cargoFormatExecutor; exports.esbuildExecutorFn = _chunkDCPKZRRYjs.esbuildExecutorFn; exports.getRegistryVersion = _chunk54FVHKCUjs.getRegistryVersion; exports.sizeLimitExecutorFn = _chunkT7BALDKJjs.sizeLimitExecutorFn; exports.typiaExecutorFn = _chunkSPXJBMLYjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkEYXDS7SGjs.unbuildExecutorFn;
|
package/dist/executors.mjs
CHANGED
|
@@ -12,26 +12,26 @@ import {
|
|
|
12
12
|
unbuildExecutorFn
|
|
13
13
|
} from "./chunk-KP4RPOBI.mjs";
|
|
14
14
|
import {
|
|
15
|
-
|
|
16
|
-
} from "./chunk-
|
|
15
|
+
cargoClippyExecutor
|
|
16
|
+
} from "./chunk-M725BO42.mjs";
|
|
17
17
|
import {
|
|
18
18
|
getRegistryVersion
|
|
19
19
|
} from "./chunk-EKWR7TBP.mjs";
|
|
20
20
|
import {
|
|
21
21
|
esbuildExecutorFn
|
|
22
|
-
} from "./chunk-
|
|
22
|
+
} from "./chunk-J6OXY3KI.mjs";
|
|
23
23
|
import {
|
|
24
24
|
cargoBuildExecutor
|
|
25
25
|
} from "./chunk-BFD7HHVZ.mjs";
|
|
26
26
|
import {
|
|
27
27
|
cargoCheckExecutor
|
|
28
28
|
} from "./chunk-4S66IYQF.mjs";
|
|
29
|
-
import {
|
|
30
|
-
cargoClippyExecutor
|
|
31
|
-
} from "./chunk-M725BO42.mjs";
|
|
32
29
|
import {
|
|
33
30
|
cargoDocExecutor
|
|
34
31
|
} from "./chunk-SNMXP6JV.mjs";
|
|
32
|
+
import {
|
|
33
|
+
cargoFormatExecutor
|
|
34
|
+
} from "./chunk-GQQLBQPQ.mjs";
|
|
35
35
|
import "./chunk-HMJTTE4A.mjs";
|
|
36
36
|
import "./chunk-QFWQZOVG.mjs";
|
|
37
37
|
import "./chunk-U65XVJ4Y.mjs";
|
package/dist/generators.js
CHANGED
|
@@ -10,10 +10,10 @@ var _chunkIZN2IVJ4js = require('./chunk-IZN2IVJ4.js');
|
|
|
10
10
|
var _chunkLBAVVYKUjs = require('./chunk-LBAVVYKU.js');
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
var
|
|
13
|
+
var _chunkI5MSPQMOjs = require('./chunk-I5MSPQMO.js');
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
var
|
|
16
|
+
var _chunkS5Z4QGF3js = require('./chunk-S5Z4QGF3.js');
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
var _chunkOKSECMVKjs = require('./chunk-OKSECMVK.js');
|
package/dist/generators.mjs
CHANGED
|
@@ -8,12 +8,12 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
releaseVersionGeneratorFn
|
|
10
10
|
} from "./chunk-MMBLGUC3.mjs";
|
|
11
|
-
import {
|
|
12
|
-
configSchemaGeneratorFn
|
|
13
|
-
} from "./chunk-6QZSAZZ3.mjs";
|
|
14
11
|
import {
|
|
15
12
|
browserLibraryGeneratorFn
|
|
16
13
|
} from "./chunk-7HWV6U3E.mjs";
|
|
14
|
+
import {
|
|
15
|
+
configSchemaGeneratorFn
|
|
16
|
+
} from "./chunk-6QZSAZZ3.mjs";
|
|
17
17
|
import {
|
|
18
18
|
initGenerator
|
|
19
19
|
} from "./chunk-437WGH2M.mjs";
|
package/dist/index.js
CHANGED
|
@@ -60,13 +60,13 @@ var _chunkSPXJBMLYjs = require('./chunk-SPXJBMLY.js');
|
|
|
60
60
|
var _chunkEYXDS7SGjs = require('./chunk-EYXDS7SG.js');
|
|
61
61
|
|
|
62
62
|
|
|
63
|
-
var
|
|
63
|
+
var _chunkO6RRIC6Ijs = require('./chunk-O6RRIC6I.js');
|
|
64
64
|
|
|
65
65
|
|
|
66
66
|
var _chunk54FVHKCUjs = require('./chunk-54FVHKCU.js');
|
|
67
67
|
|
|
68
68
|
|
|
69
|
-
var
|
|
69
|
+
var _chunkDCPKZRRYjs = require('./chunk-DCPKZRRY.js');
|
|
70
70
|
|
|
71
71
|
|
|
72
72
|
var _chunkTSYIV33Wjs = require('./chunk-TSYIV33W.js');
|
|
@@ -75,10 +75,10 @@ var _chunkTSYIV33Wjs = require('./chunk-TSYIV33W.js');
|
|
|
75
75
|
var _chunkAOFWKOAIjs = require('./chunk-AOFWKOAI.js');
|
|
76
76
|
|
|
77
77
|
|
|
78
|
-
var
|
|
78
|
+
var _chunk22UY7NFXjs = require('./chunk-22UY7NFX.js');
|
|
79
79
|
|
|
80
80
|
|
|
81
|
-
var
|
|
81
|
+
var _chunkEU6N7QT3js = require('./chunk-EU6N7QT3.js');
|
|
82
82
|
|
|
83
83
|
|
|
84
84
|
var _chunkZP76EMBEjs = require('./chunk-ZP76EMBE.js');
|
|
@@ -105,10 +105,10 @@ var _chunkIZN2IVJ4js = require('./chunk-IZN2IVJ4.js');
|
|
|
105
105
|
var _chunkLBAVVYKUjs = require('./chunk-LBAVVYKU.js');
|
|
106
106
|
|
|
107
107
|
|
|
108
|
-
var
|
|
108
|
+
var _chunkI5MSPQMOjs = require('./chunk-I5MSPQMO.js');
|
|
109
109
|
|
|
110
110
|
|
|
111
|
-
var
|
|
111
|
+
var _chunkS5Z4QGF3js = require('./chunk-S5Z4QGF3.js');
|
|
112
112
|
|
|
113
113
|
|
|
114
114
|
var _chunkOKSECMVKjs = require('./chunk-OKSECMVK.js');
|
|
@@ -282,4 +282,4 @@ require('./chunk-3RG5ZIWI.js');
|
|
|
282
282
|
|
|
283
283
|
|
|
284
284
|
|
|
285
|
-
exports.INVALID_CARGO_ARGS = _chunk4BECJRPPjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkX2VJXJEFjs.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 = _chunkYXBFVZ3Kjs.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 = _chunkI5MSPQMOjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunk4BECJRPPjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk5ZFTWEKBjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkTSYIV33Wjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkAOFWKOAIjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkO6RRIC6Ijs.cargoClippyExecutor; exports.cargoCommand = _chunk4BECJRPPjs.cargoCommand; exports.cargoCommandSync = _chunk4BECJRPPjs.cargoCommandSync; exports.cargoDocExecutor = _chunk22UY7NFXjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkEU6N7QT3js.cargoFormatExecutor; exports.cargoMetadata = _chunk4BECJRPPjs.cargoMetadata; exports.cargoRunCommand = _chunk4BECJRPPjs.cargoRunCommand; exports.childProcess = _chunk4BECJRPPjs.childProcess; exports.configSchemaGeneratorFn = _chunkS5Z4QGF3js.configSchemaGeneratorFn; exports.createCliOptions = _chunkQVYCDINGjs.createCliOptions; exports.createProjectTsConfigJson = _chunkJ4DYXH46js.createProjectTsConfigJson; exports.esbuildExecutorFn =
|
|
285
|
+
exports.INVALID_CARGO_ARGS = _chunk4BECJRPPjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkX2VJXJEFjs.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 = _chunkYXBFVZ3Kjs.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 = _chunkI5MSPQMOjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunk4BECJRPPjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk5ZFTWEKBjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkTSYIV33Wjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkAOFWKOAIjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkO6RRIC6Ijs.cargoClippyExecutor; exports.cargoCommand = _chunk4BECJRPPjs.cargoCommand; exports.cargoCommandSync = _chunk4BECJRPPjs.cargoCommandSync; exports.cargoDocExecutor = _chunk22UY7NFXjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkEU6N7QT3js.cargoFormatExecutor; exports.cargoMetadata = _chunk4BECJRPPjs.cargoMetadata; exports.cargoRunCommand = _chunk4BECJRPPjs.cargoRunCommand; exports.childProcess = _chunk4BECJRPPjs.childProcess; exports.configSchemaGeneratorFn = _chunkS5Z4QGF3js.configSchemaGeneratorFn; exports.createCliOptions = _chunkQVYCDINGjs.createCliOptions; exports.createProjectTsConfigJson = _chunkJ4DYXH46js.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunkDCPKZRRYjs.esbuildExecutorFn; exports.eslintVersion = _chunkHI4G4OOGjs.eslintVersion; exports.formatProjectTag = _chunkAX3RSZT7js.formatProjectTag; exports.getLockFileDependencies = _chunkXZSS3YABjs.getLockFileDependencies; exports.getLockFileName = _chunkXZSS3YABjs.getLockFileName; exports.getLockFileNodes = _chunkXZSS3YABjs.getLockFileNodes; exports.getOutputPath = _chunkJ4DYXH46js.getOutputPath; exports.getPackageInfo = _chunkYXBFVZ3Kjs.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 = _chunk54FVHKCUjs.getRegistryVersion; exports.getTypiaTransform = _chunk6EMYX25Vjs.getTypiaTransform; exports.hasProjectTag = _chunkAX3RSZT7js.hasProjectTag; exports.initGenerator = _chunkOKSECMVKjs.initGenerator; exports.isEqualProjectTag = _chunkAX3RSZT7js.isEqualProjectTag; exports.isExternal = _chunk4BECJRPPjs.isExternal; exports.lintStagedVersion = _chunkHI4G4OOGjs.lintStagedVersion; exports.lockFileExists = _chunkXZSS3YABjs.lockFileExists; exports.modifyCargoNestedTable = _chunkBWGJVRASjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkBWGJVRASjs.modifyCargoTable; exports.neutralLibraryGeneratorFn = _chunkH5NKKUPVjs.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunkGNOIETZRjs.nodeLibraryGeneratorFn; exports.nodeVersion = _chunkHI4G4OOGjs.nodeVersion; exports.normalizeOptions = _chunkJ4DYXH46js.normalizeOptions; exports.nxVersion = _chunkHI4G4OOGjs.nxVersion; exports.parseCargoToml = _chunkBWGJVRASjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkBWGJVRASjs.parseCargoTomlWithTree; exports.pnpmCatalogUpdate = _chunkZP76EMBEjs.pnpmCatalogUpdate; exports.pnpmVersion = _chunkHI4G4OOGjs.pnpmVersion; exports.presetGeneratorFn = _chunkIZN2IVJ4js.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkHI4G4OOGjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkHI4G4OOGjs.prettierPrismaVersion; exports.prettierVersion = _chunkHI4G4OOGjs.prettierVersion; exports.releaseVersionGeneratorFn = _chunkLBAVVYKUjs.releaseVersionGeneratorFn; exports.runProcess = _chunk4BECJRPPjs.runProcess; exports.semanticReleaseVersion = _chunkHI4G4OOGjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunkAX3RSZT7js.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunkT7BALDKJjs.sizeLimitExecutorFn; exports.stringifyCargoToml = _chunkBWGJVRASjs.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 = _chunkJ4DYXH46js.typeScriptLibraryGeneratorFn; exports.typesNodeVersion = _chunkHI4G4OOGjs.typesNodeVersion; exports.typescriptBuildExecutorSchema = _chunkIL3R5ZVSjs.typescript_build_executor_untyped_default; exports.typescriptLibraryGeneratorSchema = _chunk2AVWFUXPjs.typescript_library_generator_untyped_default; exports.typescriptVersion = _chunkHI4G4OOGjs.typescriptVersion; exports.typiaExecutorFn = _chunkSPXJBMLYjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkEYXDS7SGjs.unbuildExecutorFn; exports.verdaccioVersion = _chunkHI4G4OOGjs.verdaccioVersion; exports.withRunExecutor = _chunkAJ3C2EDWjs.withRunExecutor; exports.withRunGenerator = _chunkRJRBED5Qjs.withRunGenerator;
|
package/dist/index.mjs
CHANGED
|
@@ -59,26 +59,26 @@ import {
|
|
|
59
59
|
unbuildExecutorFn
|
|
60
60
|
} from "./chunk-KP4RPOBI.mjs";
|
|
61
61
|
import {
|
|
62
|
-
|
|
63
|
-
} from "./chunk-
|
|
62
|
+
cargoClippyExecutor
|
|
63
|
+
} from "./chunk-M725BO42.mjs";
|
|
64
64
|
import {
|
|
65
65
|
getRegistryVersion
|
|
66
66
|
} from "./chunk-EKWR7TBP.mjs";
|
|
67
67
|
import {
|
|
68
68
|
esbuildExecutorFn
|
|
69
|
-
} from "./chunk-
|
|
69
|
+
} from "./chunk-J6OXY3KI.mjs";
|
|
70
70
|
import {
|
|
71
71
|
cargoBuildExecutor
|
|
72
72
|
} from "./chunk-BFD7HHVZ.mjs";
|
|
73
73
|
import {
|
|
74
74
|
cargoCheckExecutor
|
|
75
75
|
} from "./chunk-4S66IYQF.mjs";
|
|
76
|
-
import {
|
|
77
|
-
cargoClippyExecutor
|
|
78
|
-
} from "./chunk-M725BO42.mjs";
|
|
79
76
|
import {
|
|
80
77
|
cargoDocExecutor
|
|
81
78
|
} from "./chunk-SNMXP6JV.mjs";
|
|
79
|
+
import {
|
|
80
|
+
cargoFormatExecutor
|
|
81
|
+
} from "./chunk-GQQLBQPQ.mjs";
|
|
82
82
|
import {
|
|
83
83
|
pnpmCatalogUpdate
|
|
84
84
|
} from "./chunk-HMJTTE4A.mjs";
|
|
@@ -103,12 +103,12 @@ import {
|
|
|
103
103
|
import {
|
|
104
104
|
releaseVersionGeneratorFn
|
|
105
105
|
} from "./chunk-MMBLGUC3.mjs";
|
|
106
|
-
import {
|
|
107
|
-
configSchemaGeneratorFn
|
|
108
|
-
} from "./chunk-6QZSAZZ3.mjs";
|
|
109
106
|
import {
|
|
110
107
|
browserLibraryGeneratorFn
|
|
111
108
|
} from "./chunk-7HWV6U3E.mjs";
|
|
109
|
+
import {
|
|
110
|
+
configSchemaGeneratorFn
|
|
111
|
+
} from "./chunk-6QZSAZZ3.mjs";
|
|
112
112
|
import {
|
|
113
113
|
initGenerator
|
|
114
114
|
} from "./chunk-437WGH2M.mjs";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkDCPKZRRYjs = require('../../../chunk-DCPKZRRY.js');
|
|
5
5
|
require('../../../chunk-AJ3C2EDW.js');
|
|
6
6
|
require('../../../chunk-J2Z4WP3E.js');
|
|
7
7
|
require('../../../chunk-WE4HK4RN.js');
|
|
@@ -11,4 +11,4 @@ require('../../../chunk-3RG5ZIWI.js');
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
exports.default =
|
|
14
|
+
exports.default = _chunkDCPKZRRYjs.executor_default; exports.esbuildExecutorFn = _chunkDCPKZRRYjs.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.22",
|
|
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",
|