@storm-software/workspace-tools 1.267.17 → 1.267.19
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 +24 -0
- package/README.md +1 -1
- package/dist/{chunk-63P7WOO5.mjs → chunk-HAXYCYZE.mjs} +3 -3
- package/dist/{chunk-337QFBMU.js → chunk-M6NHJNGU.js} +3 -3
- package/dist/executors.js +4 -4
- package/dist/executors.mjs +5 -5
- package/dist/index.js +4 -4
- package/dist/index.mjs +5 -5
- 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,30 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Workspace Tools
|
|
4
4
|
|
|
5
|
+
## [1.267.19](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.267.19) (2025-04-30)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **esbuild:** Resolve issue finding parent tsconfig path
|
|
10
|
+
([d0276f4cd](https://github.com/storm-software/storm-ops/commit/d0276f4cd))
|
|
11
|
+
|
|
12
|
+
### Miscellaneous
|
|
13
|
+
|
|
14
|
+
- **monorepo:** Regenerate README markdown files
|
|
15
|
+
([746468efe](https://github.com/storm-software/storm-ops/commit/746468efe))
|
|
16
|
+
|
|
17
|
+
## [1.267.18](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.267.18) (2025-04-30)
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
- **monorepo:** Resolve issue with tsconfig path in tsup
|
|
22
|
+
([98ca0489a](https://github.com/storm-software/storm-ops/commit/98ca0489a))
|
|
23
|
+
|
|
24
|
+
### Miscellaneous
|
|
25
|
+
|
|
26
|
+
- **monorepo:** Regenerate README markdown files
|
|
27
|
+
([34e5b9e9f](https://github.com/storm-software/storm-ops/commit/34e5b9e9f))
|
|
28
|
+
|
|
5
29
|
## [1.267.17](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.267.17) (2025-04-30)
|
|
6
30
|
|
|
7
31
|
### 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 -->
|
|
@@ -322,7 +322,7 @@ var DEFAULT_BUILD_OPTIONS = {
|
|
|
322
322
|
|
|
323
323
|
// ../esbuild/src/plugins/resolve-paths.ts
|
|
324
324
|
import path2 from "node:path";
|
|
325
|
-
function resolvePathsConfig(options, cwd) {
|
|
325
|
+
function resolvePathsConfig(options, cwd, projectRoot) {
|
|
326
326
|
if (options?.compilerOptions?.paths) {
|
|
327
327
|
const paths = Object.entries(options.compilerOptions.paths);
|
|
328
328
|
const resolvedPaths = paths.map(([key, paths2]) => {
|
|
@@ -334,7 +334,7 @@ function resolvePathsConfig(options, cwd) {
|
|
|
334
334
|
return Object.fromEntries(resolvedPaths);
|
|
335
335
|
}
|
|
336
336
|
if (options.extends) {
|
|
337
|
-
const extendsPath = path2.resolve(cwd, options.extends);
|
|
337
|
+
const extendsPath = path2.resolve(projectRoot ? joinPaths(cwd, projectRoot, options.extends) : joinPaths(cwd, options.extends));
|
|
338
338
|
const extendsDir = path2.dirname(extendsPath);
|
|
339
339
|
const extendsConfig = __require(extendsPath);
|
|
340
340
|
return resolvePathsConfig(extendsConfig, extendsDir);
|
|
@@ -346,7 +346,7 @@ var resolvePathsPlugin = /* @__PURE__ */ __name((context) => ({
|
|
|
346
346
|
name: "storm:resolve-paths",
|
|
347
347
|
setup(build3) {
|
|
348
348
|
const parentTsConfig = build3.initialOptions.tsconfig ? __require(joinPaths(context.workspaceConfig.workspaceRoot, build3.initialOptions.tsconfig.replace(context.workspaceConfig.workspaceRoot, ""))) : __require(joinPaths(context.workspaceConfig.workspaceRoot, "tsconfig.json"));
|
|
349
|
-
const resolvedTsPaths = resolvePathsConfig(parentTsConfig, context.workspaceConfig.workspaceRoot);
|
|
349
|
+
const resolvedTsPaths = resolvePathsConfig(parentTsConfig, context.workspaceConfig.workspaceRoot, context.options.projectRoot);
|
|
350
350
|
const packagesRegex = new RegExp(`^(${Object.keys(resolvedTsPaths).join("|")})$`);
|
|
351
351
|
build3.onResolve({
|
|
352
352
|
filter: packagesRegex
|
|
@@ -322,7 +322,7 @@ var DEFAULT_BUILD_OPTIONS = {
|
|
|
322
322
|
|
|
323
323
|
// ../esbuild/src/plugins/resolve-paths.ts
|
|
324
324
|
|
|
325
|
-
function resolvePathsConfig(options, cwd) {
|
|
325
|
+
function resolvePathsConfig(options, cwd, projectRoot) {
|
|
326
326
|
if (_optionalChain([options, 'optionalAccess', _27 => _27.compilerOptions, 'optionalAccess', _28 => _28.paths])) {
|
|
327
327
|
const paths = Object.entries(options.compilerOptions.paths);
|
|
328
328
|
const resolvedPaths = paths.map(([key, paths2]) => {
|
|
@@ -334,7 +334,7 @@ function resolvePathsConfig(options, cwd) {
|
|
|
334
334
|
return Object.fromEntries(resolvedPaths);
|
|
335
335
|
}
|
|
336
336
|
if (options.extends) {
|
|
337
|
-
const extendsPath = _path2.default.resolve(cwd, options.extends);
|
|
337
|
+
const extendsPath = _path2.default.resolve(projectRoot ? _chunkJTAXCQX6js.joinPaths.call(void 0, cwd, projectRoot, options.extends) : _chunkJTAXCQX6js.joinPaths.call(void 0, cwd, options.extends));
|
|
338
338
|
const extendsDir = _path2.default.dirname(extendsPath);
|
|
339
339
|
const extendsConfig = _chunk3GQAWCBQjs.__require.call(void 0, extendsPath);
|
|
340
340
|
return resolvePathsConfig(extendsConfig, extendsDir);
|
|
@@ -346,7 +346,7 @@ var resolvePathsPlugin = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (c
|
|
|
346
346
|
name: "storm:resolve-paths",
|
|
347
347
|
setup(build3) {
|
|
348
348
|
const parentTsConfig = build3.initialOptions.tsconfig ? _chunk3GQAWCBQjs.__require.call(void 0, _chunkJTAXCQX6js.joinPaths.call(void 0, context.workspaceConfig.workspaceRoot, build3.initialOptions.tsconfig.replace(context.workspaceConfig.workspaceRoot, ""))) : _chunk3GQAWCBQjs.__require.call(void 0, _chunkJTAXCQX6js.joinPaths.call(void 0, context.workspaceConfig.workspaceRoot, "tsconfig.json"));
|
|
349
|
-
const resolvedTsPaths = resolvePathsConfig(parentTsConfig, context.workspaceConfig.workspaceRoot);
|
|
349
|
+
const resolvedTsPaths = resolvePathsConfig(parentTsConfig, context.workspaceConfig.workspaceRoot, context.options.projectRoot);
|
|
350
350
|
const packagesRegex = new RegExp(`^(${Object.keys(resolvedTsPaths).join("|")})$`);
|
|
351
351
|
build3.onResolve({
|
|
352
352
|
filter: packagesRegex
|
package/dist/executors.js
CHANGED
|
@@ -13,13 +13,13 @@ var _chunkICPUM2HSjs = require('./chunk-ICPUM2HS.js');
|
|
|
13
13
|
var _chunkYW4UN25Ujs = require('./chunk-YW4UN25U.js');
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
var
|
|
16
|
+
var _chunkHOXPAVCLjs = require('./chunk-HOXPAVCL.js');
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
var
|
|
22
|
+
var _chunkM6NHJNGUjs = require('./chunk-M6NHJNGU.js');
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
var _chunkB3DVFXXDjs = require('./chunk-B3DVFXXD.js');
|
|
@@ -31,7 +31,7 @@ var _chunkRUKOOSWLjs = require('./chunk-RUKOOSWL.js');
|
|
|
31
31
|
var _chunkNSCWEC2Sjs = require('./chunk-NSCWEC2S.js');
|
|
32
32
|
|
|
33
33
|
|
|
34
|
-
var
|
|
34
|
+
var _chunkTET4GF3Djs = require('./chunk-TET4GF3D.js');
|
|
35
35
|
require('./chunk-CUPARBOS.js');
|
|
36
36
|
require('./chunk-ULBTYC2B.js');
|
|
37
37
|
require('./chunk-ZMFVKBRM.js');
|
|
@@ -53,4 +53,4 @@ require('./chunk-3GQAWCBQ.js');
|
|
|
53
53
|
|
|
54
54
|
|
|
55
55
|
|
|
56
|
-
exports.LARGE_BUFFER = _chunkSUQKASD7js.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkB3DVFXXDjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkRUKOOSWLjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkNSCWEC2Sjs.cargoClippyExecutor; exports.cargoDocExecutor = _chunkTET4GF3Djs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkHOXPAVCLjs.cargoFormatExecutor; exports.esbuildExecutorFn =
|
|
56
|
+
exports.LARGE_BUFFER = _chunkSUQKASD7js.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkB3DVFXXDjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkRUKOOSWLjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkNSCWEC2Sjs.cargoClippyExecutor; exports.cargoDocExecutor = _chunkTET4GF3Djs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkHOXPAVCLjs.cargoFormatExecutor; exports.esbuildExecutorFn = _chunkM6NHJNGUjs.esbuildExecutorFn; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.sizeLimitExecutorFn = _chunkOKW5O5P4js.sizeLimitExecutorFn; exports.typiaExecutorFn = _chunkICPUM2HSjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkYW4UN25Ujs.unbuildExecutorFn;
|
package/dist/executors.mjs
CHANGED
|
@@ -12,14 +12,14 @@ import {
|
|
|
12
12
|
unbuildExecutorFn
|
|
13
13
|
} from "./chunk-YMGMEPP5.mjs";
|
|
14
14
|
import {
|
|
15
|
-
|
|
16
|
-
} from "./chunk-
|
|
15
|
+
cargoFormatExecutor
|
|
16
|
+
} from "./chunk-KTRA4YQT.mjs";
|
|
17
17
|
import {
|
|
18
18
|
getRegistryVersion
|
|
19
19
|
} from "./chunk-VGE6EHYW.mjs";
|
|
20
20
|
import {
|
|
21
21
|
esbuildExecutorFn
|
|
22
|
-
} from "./chunk-
|
|
22
|
+
} from "./chunk-HAXYCYZE.mjs";
|
|
23
23
|
import {
|
|
24
24
|
cargoBuildExecutor
|
|
25
25
|
} from "./chunk-A77TLQ44.mjs";
|
|
@@ -30,8 +30,8 @@ import {
|
|
|
30
30
|
cargoClippyExecutor
|
|
31
31
|
} from "./chunk-JJ4PSTY4.mjs";
|
|
32
32
|
import {
|
|
33
|
-
|
|
34
|
-
} from "./chunk-
|
|
33
|
+
cargoDocExecutor
|
|
34
|
+
} from "./chunk-T6VIUVAL.mjs";
|
|
35
35
|
import "./chunk-5SVLMXLH.mjs";
|
|
36
36
|
import "./chunk-62XRHQ44.mjs";
|
|
37
37
|
import "./chunk-H72YBOLR.mjs";
|
package/dist/index.js
CHANGED
|
@@ -60,13 +60,13 @@ var _chunkICPUM2HSjs = require('./chunk-ICPUM2HS.js');
|
|
|
60
60
|
var _chunkYW4UN25Ujs = require('./chunk-YW4UN25U.js');
|
|
61
61
|
|
|
62
62
|
|
|
63
|
-
var
|
|
63
|
+
var _chunkHOXPAVCLjs = require('./chunk-HOXPAVCL.js');
|
|
64
64
|
|
|
65
65
|
|
|
66
66
|
var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
|
|
67
67
|
|
|
68
68
|
|
|
69
|
-
var
|
|
69
|
+
var _chunkM6NHJNGUjs = require('./chunk-M6NHJNGU.js');
|
|
70
70
|
|
|
71
71
|
|
|
72
72
|
var _chunkB3DVFXXDjs = require('./chunk-B3DVFXXD.js');
|
|
@@ -78,7 +78,7 @@ var _chunkRUKOOSWLjs = require('./chunk-RUKOOSWL.js');
|
|
|
78
78
|
var _chunkNSCWEC2Sjs = require('./chunk-NSCWEC2S.js');
|
|
79
79
|
|
|
80
80
|
|
|
81
|
-
var
|
|
81
|
+
var _chunkTET4GF3Djs = require('./chunk-TET4GF3D.js');
|
|
82
82
|
|
|
83
83
|
|
|
84
84
|
var _chunkCUPARBOSjs = require('./chunk-CUPARBOS.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 = _chunkSUQKASD7js.LARGE_BUFFER; exports.LOCK_FILES = _chunkPK2SUBWIjs.LOCK_FILES; exports.NPM_LOCK_FILE = _chunkPK2SUBWIjs.NPM_LOCK_FILE; exports.NPM_LOCK_PATH = _chunkPK2SUBWIjs.NPM_LOCK_PATH; exports.PNPM_LOCK_FILE = _chunkPK2SUBWIjs.PNPM_LOCK_FILE; exports.PNPM_LOCK_PATH = _chunkPK2SUBWIjs.PNPM_LOCK_PATH; exports.PackageManagerTypes = _chunk7AXFMX2Tjs.PackageManagerTypes; exports.ProjectTagConstants = _chunk7YRW5HNXjs.ProjectTagConstants; exports.ProjectTagDistStyleValue = _chunk4NOLUAQNjs.ProjectTagDistStyleValue; exports.ProjectTagLanguageValue = _chunk4NOLUAQNjs.ProjectTagLanguageValue; exports.ProjectTagPlatformValue = _chunk4NOLUAQNjs.ProjectTagPlatformValue; exports.ProjectTagRegistryValue = _chunk4NOLUAQNjs.ProjectTagRegistryValue; exports.ProjectTagTypeValue = _chunk4NOLUAQNjs.ProjectTagTypeValue; exports.ProjectTagVariant = _chunk4NOLUAQNjs.ProjectTagVariant; exports.YARN_LOCK_FILE = _chunkPK2SUBWIjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkPK2SUBWIjs.YARN_LOCK_PATH; exports.addPluginProjectTag = _chunk7YRW5HNXjs.addPluginProjectTag; exports.addProjectTag = _chunk7YRW5HNXjs.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunkAC5SI4YZjs.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunkOQPX75CGjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkULBTYC2Bjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk6QO3KMZAjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkB3DVFXXDjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkRUKOOSWLjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkNSCWEC2Sjs.cargoClippyExecutor; exports.cargoCommand = _chunkULBTYC2Bjs.cargoCommand; exports.cargoCommandSync = _chunkULBTYC2Bjs.cargoCommandSync; exports.cargoDocExecutor = _chunkTET4GF3Djs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkHOXPAVCLjs.cargoFormatExecutor; exports.cargoMetadata = _chunkULBTYC2Bjs.cargoMetadata; exports.cargoRunCommand = _chunkULBTYC2Bjs.cargoRunCommand; exports.childProcess = _chunkULBTYC2Bjs.childProcess; exports.configSchemaGeneratorFn = _chunk6JJB5AYAjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkDHGZTMNDjs.createCliOptions; exports.createProjectTsConfigJson = _chunkRBU35LQWjs.createProjectTsConfigJson; exports.esbuildExecutorFn =
|
|
285
|
+
exports.INVALID_CARGO_ARGS = _chunkULBTYC2Bjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkSUQKASD7js.LARGE_BUFFER; exports.LOCK_FILES = _chunkPK2SUBWIjs.LOCK_FILES; exports.NPM_LOCK_FILE = _chunkPK2SUBWIjs.NPM_LOCK_FILE; exports.NPM_LOCK_PATH = _chunkPK2SUBWIjs.NPM_LOCK_PATH; exports.PNPM_LOCK_FILE = _chunkPK2SUBWIjs.PNPM_LOCK_FILE; exports.PNPM_LOCK_PATH = _chunkPK2SUBWIjs.PNPM_LOCK_PATH; exports.PackageManagerTypes = _chunk7AXFMX2Tjs.PackageManagerTypes; exports.ProjectTagConstants = _chunk7YRW5HNXjs.ProjectTagConstants; exports.ProjectTagDistStyleValue = _chunk4NOLUAQNjs.ProjectTagDistStyleValue; exports.ProjectTagLanguageValue = _chunk4NOLUAQNjs.ProjectTagLanguageValue; exports.ProjectTagPlatformValue = _chunk4NOLUAQNjs.ProjectTagPlatformValue; exports.ProjectTagRegistryValue = _chunk4NOLUAQNjs.ProjectTagRegistryValue; exports.ProjectTagTypeValue = _chunk4NOLUAQNjs.ProjectTagTypeValue; exports.ProjectTagVariant = _chunk4NOLUAQNjs.ProjectTagVariant; exports.YARN_LOCK_FILE = _chunkPK2SUBWIjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkPK2SUBWIjs.YARN_LOCK_PATH; exports.addPluginProjectTag = _chunk7YRW5HNXjs.addPluginProjectTag; exports.addProjectTag = _chunk7YRW5HNXjs.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunkAC5SI4YZjs.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunkOQPX75CGjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkULBTYC2Bjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk6QO3KMZAjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkB3DVFXXDjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkRUKOOSWLjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkNSCWEC2Sjs.cargoClippyExecutor; exports.cargoCommand = _chunkULBTYC2Bjs.cargoCommand; exports.cargoCommandSync = _chunkULBTYC2Bjs.cargoCommandSync; exports.cargoDocExecutor = _chunkTET4GF3Djs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkHOXPAVCLjs.cargoFormatExecutor; exports.cargoMetadata = _chunkULBTYC2Bjs.cargoMetadata; exports.cargoRunCommand = _chunkULBTYC2Bjs.cargoRunCommand; exports.childProcess = _chunkULBTYC2Bjs.childProcess; exports.configSchemaGeneratorFn = _chunk6JJB5AYAjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkDHGZTMNDjs.createCliOptions; exports.createProjectTsConfigJson = _chunkRBU35LQWjs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunkM6NHJNGUjs.esbuildExecutorFn; exports.eslintVersion = _chunkHI4G4OOGjs.eslintVersion; exports.formatProjectTag = _chunk7YRW5HNXjs.formatProjectTag; exports.getLockFileDependencies = _chunkPK2SUBWIjs.getLockFileDependencies; exports.getLockFileName = _chunkPK2SUBWIjs.getLockFileName; exports.getLockFileNodes = _chunkPK2SUBWIjs.getLockFileNodes; exports.getOutputPath = _chunkRBU35LQWjs.getOutputPath; exports.getPackageInfo = _chunk7AXFMX2Tjs.getPackageInfo; exports.getProjectConfigFromProjectJsonPath = _chunkUF6KFXG5js.getProjectConfigFromProjectJsonPath; exports.getProjectConfigFromProjectRoot = _chunkUF6KFXG5js.getProjectConfigFromProjectRoot; exports.getProjectConfiguration = _chunkGKL4BY2Yjs.getProjectConfiguration; exports.getProjectConfigurations = _chunkGKL4BY2Yjs.getProjectConfigurations; exports.getProjectPlatform = _chunkUF6KFXG5js.getProjectPlatform; exports.getProjectRoot = _chunkUF6KFXG5js.getProjectRoot; exports.getProjectTag = _chunk7YRW5HNXjs.getProjectTag; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.getTypiaTransform = _chunkXITP2BX2js.getTypiaTransform; exports.hasProjectTag = _chunk7YRW5HNXjs.hasProjectTag; exports.initGenerator = _chunk3IZ3O4OKjs.initGenerator; exports.isEqualProjectTag = _chunk7YRW5HNXjs.isEqualProjectTag; exports.isExternal = _chunkULBTYC2Bjs.isExternal; exports.lintStagedVersion = _chunkHI4G4OOGjs.lintStagedVersion; exports.lockFileExists = _chunkPK2SUBWIjs.lockFileExists; exports.modifyCargoNestedTable = _chunkZMFVKBRMjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkZMFVKBRMjs.modifyCargoTable; exports.neutralLibraryGeneratorFn = _chunk7PRHEOCTjs.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunk7NNHBZC5js.nodeLibraryGeneratorFn; exports.nodeVersion = _chunkHI4G4OOGjs.nodeVersion; exports.normalizeOptions = _chunkRBU35LQWjs.normalizeOptions; exports.nxVersion = _chunkHI4G4OOGjs.nxVersion; exports.parseCargoToml = _chunkZMFVKBRMjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkZMFVKBRMjs.parseCargoTomlWithTree; exports.pnpmCatalogUpdate = _chunkCUPARBOSjs.pnpmCatalogUpdate; exports.pnpmVersion = _chunkHI4G4OOGjs.pnpmVersion; exports.presetGeneratorFn = _chunkP4OVFIT6js.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkHI4G4OOGjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkHI4G4OOGjs.prettierPrismaVersion; exports.prettierVersion = _chunkHI4G4OOGjs.prettierVersion; exports.releaseVersionGeneratorFn = _chunk4Y6B6JDHjs.releaseVersionGeneratorFn; exports.runProcess = _chunkULBTYC2Bjs.runProcess; exports.semanticReleaseVersion = _chunkHI4G4OOGjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunk7YRW5HNXjs.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunkOKW5O5P4js.sizeLimitExecutorFn; exports.stringifyCargoToml = _chunkZMFVKBRMjs.stringifyCargoToml; exports.swcCliVersion = _chunkHI4G4OOGjs.swcCliVersion; exports.swcCoreVersion = _chunkHI4G4OOGjs.swcCoreVersion; exports.swcHelpersVersion = _chunkHI4G4OOGjs.swcHelpersVersion; exports.swcNodeVersion = _chunkHI4G4OOGjs.swcNodeVersion; exports.tsLibVersion = _chunkHI4G4OOGjs.tsLibVersion; exports.tsupVersion = _chunkHI4G4OOGjs.tsupVersion; exports.typeScriptLibraryGeneratorFn = _chunkRBU35LQWjs.typeScriptLibraryGeneratorFn; exports.typesNodeVersion = _chunkHI4G4OOGjs.typesNodeVersion; exports.typescriptBuildExecutorSchema = _chunkIWCQL3AQjs.typescript_build_executor_untyped_default; exports.typescriptLibraryGeneratorSchema = _chunk7O34DHUGjs.typescript_library_generator_untyped_default; exports.typescriptVersion = _chunkHI4G4OOGjs.typescriptVersion; exports.typiaExecutorFn = _chunkICPUM2HSjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkYW4UN25Ujs.unbuildExecutorFn; exports.verdaccioVersion = _chunkHI4G4OOGjs.verdaccioVersion; exports.withRunExecutor = _chunk6CGAYKQLjs.withRunExecutor; exports.withRunGenerator = _chunkZ4NKRWWJjs.withRunGenerator;
|
package/dist/index.mjs
CHANGED
|
@@ -59,14 +59,14 @@ import {
|
|
|
59
59
|
unbuildExecutorFn
|
|
60
60
|
} from "./chunk-YMGMEPP5.mjs";
|
|
61
61
|
import {
|
|
62
|
-
|
|
63
|
-
} from "./chunk-
|
|
62
|
+
cargoFormatExecutor
|
|
63
|
+
} from "./chunk-KTRA4YQT.mjs";
|
|
64
64
|
import {
|
|
65
65
|
getRegistryVersion
|
|
66
66
|
} from "./chunk-VGE6EHYW.mjs";
|
|
67
67
|
import {
|
|
68
68
|
esbuildExecutorFn
|
|
69
|
-
} from "./chunk-
|
|
69
|
+
} from "./chunk-HAXYCYZE.mjs";
|
|
70
70
|
import {
|
|
71
71
|
cargoBuildExecutor
|
|
72
72
|
} from "./chunk-A77TLQ44.mjs";
|
|
@@ -77,8 +77,8 @@ import {
|
|
|
77
77
|
cargoClippyExecutor
|
|
78
78
|
} from "./chunk-JJ4PSTY4.mjs";
|
|
79
79
|
import {
|
|
80
|
-
|
|
81
|
-
} from "./chunk-
|
|
80
|
+
cargoDocExecutor
|
|
81
|
+
} from "./chunk-T6VIUVAL.mjs";
|
|
82
82
|
import {
|
|
83
83
|
pnpmCatalogUpdate
|
|
84
84
|
} from "./chunk-5SVLMXLH.mjs";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkM6NHJNGUjs = require('../../../chunk-M6NHJNGU.js');
|
|
5
5
|
require('../../../chunk-6CGAYKQL.js');
|
|
6
6
|
require('../../../chunk-UALZJZUK.js');
|
|
7
7
|
require('../../../chunk-G4QFSE5B.js');
|
|
@@ -11,4 +11,4 @@ require('../../../chunk-3GQAWCBQ.js');
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
exports.default =
|
|
14
|
+
exports.default = _chunkM6NHJNGUjs.executor_default; exports.esbuildExecutorFn = _chunkM6NHJNGUjs.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.19",
|
|
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",
|