@storm-software/workspace-tools 1.292.25 → 1.292.26
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 +23 -0
- package/README.md +1 -1
- package/dist/{chunk-LF2APRG7.mjs → chunk-IDYJQV74.mjs} +13 -6
- package/dist/{chunk-A6N326FN.js → chunk-YYBWK3LE.js} +13 -6
- package/dist/executors.js +2 -2
- package/dist/executors.mjs +3 -3
- package/dist/generators.js +6 -6
- package/dist/generators.mjs +6 -6
- package/dist/index.js +8 -8
- package/dist/index.mjs +9 -9
- package/dist/src/plugins/rust/cargo-toml.d.mts +25 -0
- package/dist/src/plugins/rust/cargo-toml.d.ts +25 -0
- package/dist/src/plugins/rust/cargo-toml.js +2 -2
- package/dist/src/plugins/rust/cargo-toml.mjs +1 -1
- package/dist/src/plugins/rust/index.js +2 -2
- package/dist/src/plugins/rust/index.mjs +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,29 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Workspace Tools
|
|
4
4
|
|
|
5
|
+
## [1.292.25](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.292.25) (11/12/2025)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **workspace-tools:** Improved `rust` Nx plugin logging
|
|
10
|
+
([bd839c5a4](https://github.com/storm-software/storm-ops/commit/bd839c5a4))
|
|
11
|
+
- **monorepo:** Update workspace package dependencies
|
|
12
|
+
([2f7e4c39e](https://github.com/storm-software/storm-ops/commit/2f7e4c39e))
|
|
13
|
+
- **monorepo:** Update README markdown files
|
|
14
|
+
([b8f258457](https://github.com/storm-software/storm-ops/commit/b8f258457))
|
|
15
|
+
|
|
16
|
+
### Updated Dependencies
|
|
17
|
+
|
|
18
|
+
- Updated **testing-tools** to **v1.119.25**
|
|
19
|
+
- Updated **config-tools** to **v1.188.25**
|
|
20
|
+
- Updated **pnpm-tools** to **v0.6.25**
|
|
21
|
+
- Updated **npm-tools** to **v0.5.25**
|
|
22
|
+
- Updated **prettier** to **v0.57.25**
|
|
23
|
+
- Updated **esbuild** to **v0.53.25**
|
|
24
|
+
- Updated **unbuild** to **v0.57.25**
|
|
25
|
+
- Updated **config** to **v1.134.25**
|
|
26
|
+
- Updated **tsdown** to **v0.45.25**
|
|
27
|
+
|
|
5
28
|
## [1.292.24](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.292.24) (11/10/2025)
|
|
6
29
|
|
|
7
30
|
### 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 -->
|
|
@@ -16,6 +16,7 @@ import {
|
|
|
16
16
|
createNodesFromFiles,
|
|
17
17
|
joinPathFragments,
|
|
18
18
|
readJsonFile,
|
|
19
|
+
validateDependency,
|
|
19
20
|
workspaceRoot
|
|
20
21
|
} from "@nx/devkit";
|
|
21
22
|
import defu from "defu";
|
|
@@ -351,13 +352,18 @@ var createDependencies = (options, context) => {
|
|
|
351
352
|
}
|
|
352
353
|
if (context.projects[deps.name]) {
|
|
353
354
|
dependencies.push(
|
|
354
|
-
createDependency(pkg, deps.name, DependencyType.static)
|
|
355
|
+
createDependency(context, pkg, deps.name, DependencyType.static)
|
|
355
356
|
);
|
|
356
357
|
} else {
|
|
357
358
|
const externalDepName = `cargo:${deps.name}`;
|
|
358
359
|
if (externalDepName in (context.externalNodes ?? {})) {
|
|
359
360
|
dependencies.push(
|
|
360
|
-
createDependency(
|
|
361
|
+
createDependency(
|
|
362
|
+
context,
|
|
363
|
+
pkg,
|
|
364
|
+
externalDepName,
|
|
365
|
+
DependencyType.static
|
|
366
|
+
)
|
|
361
367
|
);
|
|
362
368
|
}
|
|
363
369
|
}
|
|
@@ -378,14 +384,15 @@ var createDependencies = (options, context) => {
|
|
|
378
384
|
);
|
|
379
385
|
}
|
|
380
386
|
};
|
|
381
|
-
function createDependency(pkg, depName, type) {
|
|
382
|
-
const
|
|
383
|
-
return {
|
|
387
|
+
function createDependency(context, pkg, depName, type) {
|
|
388
|
+
const dependency = {
|
|
384
389
|
type,
|
|
385
390
|
source: pkg.name,
|
|
386
391
|
target: depName,
|
|
387
|
-
sourceFile:
|
|
392
|
+
sourceFile: pkg.manifest_path.replace(/\\/g, "/").replace(`${workspaceRoot.replace(/\\/g, "/")}/`, "")
|
|
388
393
|
};
|
|
394
|
+
validateDependency(dependency, context);
|
|
395
|
+
return dependency;
|
|
389
396
|
}
|
|
390
397
|
|
|
391
398
|
export {
|
|
@@ -17,6 +17,7 @@ var _chunkAX3RSZT7js = require('./chunk-AX3RSZT7.js');
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
|
|
20
|
+
|
|
20
21
|
var _devkit = require('@nx/devkit');
|
|
21
22
|
var _defu = require('defu'); var _defu2 = _interopRequireDefault(_defu);
|
|
22
23
|
var _fs = require('fs');
|
|
@@ -351,13 +352,18 @@ var createDependencies = (options, context) => {
|
|
|
351
352
|
}
|
|
352
353
|
if (context.projects[deps.name]) {
|
|
353
354
|
dependencies.push(
|
|
354
|
-
createDependency(pkg, deps.name, _projectgraph.DependencyType.static)
|
|
355
|
+
createDependency(context, pkg, deps.name, _projectgraph.DependencyType.static)
|
|
355
356
|
);
|
|
356
357
|
} else {
|
|
357
358
|
const externalDepName = `cargo:${deps.name}`;
|
|
358
359
|
if (externalDepName in (_nullishCoalesce(context.externalNodes, () => ( {})))) {
|
|
359
360
|
dependencies.push(
|
|
360
|
-
createDependency(
|
|
361
|
+
createDependency(
|
|
362
|
+
context,
|
|
363
|
+
pkg,
|
|
364
|
+
externalDepName,
|
|
365
|
+
_projectgraph.DependencyType.static
|
|
366
|
+
)
|
|
361
367
|
);
|
|
362
368
|
}
|
|
363
369
|
}
|
|
@@ -378,14 +384,15 @@ var createDependencies = (options, context) => {
|
|
|
378
384
|
);
|
|
379
385
|
}
|
|
380
386
|
};
|
|
381
|
-
function createDependency(pkg, depName, type) {
|
|
382
|
-
const
|
|
383
|
-
return {
|
|
387
|
+
function createDependency(context, pkg, depName, type) {
|
|
388
|
+
const dependency = {
|
|
384
389
|
type,
|
|
385
390
|
source: pkg.name,
|
|
386
391
|
target: depName,
|
|
387
|
-
sourceFile:
|
|
392
|
+
sourceFile: pkg.manifest_path.replace(/\\/g, "/").replace(`${_devkit.workspaceRoot.replace(/\\/g, "/")}/`, "")
|
|
388
393
|
};
|
|
394
|
+
_devkit.validateDependency.call(void 0, dependency, context);
|
|
395
|
+
return dependency;
|
|
389
396
|
}
|
|
390
397
|
|
|
391
398
|
|
package/dist/executors.js
CHANGED
|
@@ -14,10 +14,10 @@ var _chunkMYFQ64WEjs = require('./chunk-MYFQ64WE.js');
|
|
|
14
14
|
require('./chunk-FSYURQ5X.js');
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
var
|
|
17
|
+
var _chunk5C7DI3NFjs = require('./chunk-5C7DI3NF.js');
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
var
|
|
20
|
+
var _chunkEECJXHDAjs = require('./chunk-EECJXHDA.js');
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
var _chunkVWQYDQYVjs = require('./chunk-VWQYDQYV.js');
|
package/dist/executors.mjs
CHANGED
|
@@ -12,12 +12,12 @@ import {
|
|
|
12
12
|
esbuildExecutorFn
|
|
13
13
|
} from "./chunk-NXWRHUNL.mjs";
|
|
14
14
|
import "./chunk-F3NQOV2M.mjs";
|
|
15
|
-
import {
|
|
16
|
-
LARGE_BUFFER
|
|
17
|
-
} from "./chunk-OOR7HG4P.mjs";
|
|
18
15
|
import {
|
|
19
16
|
sizeLimitExecutorFn
|
|
20
17
|
} from "./chunk-IIDQ2ITD.mjs";
|
|
18
|
+
import {
|
|
19
|
+
LARGE_BUFFER
|
|
20
|
+
} from "./chunk-OOR7HG4P.mjs";
|
|
21
21
|
import {
|
|
22
22
|
cargoClippyExecutor
|
|
23
23
|
} from "./chunk-BC7TUSC7.mjs";
|
package/dist/generators.js
CHANGED
|
@@ -1,12 +1,6 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-C3TC7AUW.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var _chunkJ3WZEN2Ujs = require('./chunk-J3WZEN2U.js');
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
var _chunkMBO4Z5AVjs = require('./chunk-MBO4Z5AV.js');
|
|
8
|
-
|
|
9
|
-
|
|
10
4
|
var _chunkOKSECMVKjs = require('./chunk-OKSECMVK.js');
|
|
11
5
|
|
|
12
6
|
|
|
@@ -16,7 +10,13 @@ var _chunkT5BI42AOjs = require('./chunk-T5BI42AO.js');
|
|
|
16
10
|
var _chunkYMZQ7GGXjs = require('./chunk-YMZQ7GGX.js');
|
|
17
11
|
|
|
18
12
|
|
|
13
|
+
var _chunkJ3WZEN2Ujs = require('./chunk-J3WZEN2U.js');
|
|
14
|
+
|
|
15
|
+
|
|
19
16
|
var _chunk6A7OOTO2js = require('./chunk-6A7OOTO2.js');
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
var _chunkMBO4Z5AVjs = require('./chunk-MBO4Z5AV.js');
|
|
20
20
|
require('./chunk-4HV5G4DT.js');
|
|
21
21
|
require('./chunk-SZWM7COV.js');
|
|
22
22
|
require('./chunk-AX3RSZT7.js');
|
package/dist/generators.mjs
CHANGED
|
@@ -1,10 +1,4 @@
|
|
|
1
1
|
import "./chunk-SAIDGUHG.mjs";
|
|
2
|
-
import {
|
|
3
|
-
presetGeneratorFn
|
|
4
|
-
} from "./chunk-CDBRCMR4.mjs";
|
|
5
|
-
import {
|
|
6
|
-
configSchemaGeneratorFn
|
|
7
|
-
} from "./chunk-REKF65PT.mjs";
|
|
8
2
|
import {
|
|
9
3
|
initGenerator
|
|
10
4
|
} from "./chunk-437WGH2M.mjs";
|
|
@@ -14,9 +8,15 @@ import {
|
|
|
14
8
|
import {
|
|
15
9
|
nodeLibraryGeneratorFn
|
|
16
10
|
} from "./chunk-ZM7BQH6Q.mjs";
|
|
11
|
+
import {
|
|
12
|
+
presetGeneratorFn
|
|
13
|
+
} from "./chunk-CDBRCMR4.mjs";
|
|
17
14
|
import {
|
|
18
15
|
browserLibraryGeneratorFn
|
|
19
16
|
} from "./chunk-TMUZX6IO.mjs";
|
|
17
|
+
import {
|
|
18
|
+
configSchemaGeneratorFn
|
|
19
|
+
} from "./chunk-REKF65PT.mjs";
|
|
20
20
|
import "./chunk-HP36FVRU.mjs";
|
|
21
21
|
import "./chunk-QC5ON3X4.mjs";
|
|
22
22
|
import "./chunk-F66XEAID.mjs";
|
package/dist/index.js
CHANGED
|
@@ -71,10 +71,10 @@ var _chunkMYFQ64WEjs = require('./chunk-MYFQ64WE.js');
|
|
|
71
71
|
require('./chunk-FSYURQ5X.js');
|
|
72
72
|
|
|
73
73
|
|
|
74
|
-
var
|
|
74
|
+
var _chunk5C7DI3NFjs = require('./chunk-5C7DI3NF.js');
|
|
75
75
|
|
|
76
76
|
|
|
77
|
-
var
|
|
77
|
+
var _chunkEECJXHDAjs = require('./chunk-EECJXHDA.js');
|
|
78
78
|
|
|
79
79
|
|
|
80
80
|
var _chunkVWQYDQYVjs = require('./chunk-VWQYDQYV.js');
|
|
@@ -113,12 +113,6 @@ require('./chunk-JWFGGMYQ.js');
|
|
|
113
113
|
require('./chunk-C3TC7AUW.js');
|
|
114
114
|
|
|
115
115
|
|
|
116
|
-
var _chunkJ3WZEN2Ujs = require('./chunk-J3WZEN2U.js');
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
var _chunkMBO4Z5AVjs = require('./chunk-MBO4Z5AV.js');
|
|
120
|
-
|
|
121
|
-
|
|
122
116
|
var _chunkOKSECMVKjs = require('./chunk-OKSECMVK.js');
|
|
123
117
|
|
|
124
118
|
|
|
@@ -128,9 +122,15 @@ var _chunkT5BI42AOjs = require('./chunk-T5BI42AO.js');
|
|
|
128
122
|
var _chunkYMZQ7GGXjs = require('./chunk-YMZQ7GGX.js');
|
|
129
123
|
|
|
130
124
|
|
|
125
|
+
var _chunkJ3WZEN2Ujs = require('./chunk-J3WZEN2U.js');
|
|
126
|
+
|
|
127
|
+
|
|
131
128
|
var _chunk6A7OOTO2js = require('./chunk-6A7OOTO2.js');
|
|
132
129
|
|
|
133
130
|
|
|
131
|
+
var _chunkMBO4Z5AVjs = require('./chunk-MBO4Z5AV.js');
|
|
132
|
+
|
|
133
|
+
|
|
134
134
|
|
|
135
135
|
|
|
136
136
|
|
package/dist/index.mjs
CHANGED
|
@@ -69,12 +69,12 @@ import {
|
|
|
69
69
|
esbuildExecutorFn
|
|
70
70
|
} from "./chunk-NXWRHUNL.mjs";
|
|
71
71
|
import "./chunk-F3NQOV2M.mjs";
|
|
72
|
-
import {
|
|
73
|
-
LARGE_BUFFER
|
|
74
|
-
} from "./chunk-OOR7HG4P.mjs";
|
|
75
72
|
import {
|
|
76
73
|
sizeLimitExecutorFn
|
|
77
74
|
} from "./chunk-IIDQ2ITD.mjs";
|
|
75
|
+
import {
|
|
76
|
+
LARGE_BUFFER
|
|
77
|
+
} from "./chunk-OOR7HG4P.mjs";
|
|
78
78
|
import {
|
|
79
79
|
cargoClippyExecutor
|
|
80
80
|
} from "./chunk-BC7TUSC7.mjs";
|
|
@@ -111,12 +111,6 @@ import {
|
|
|
111
111
|
} from "./chunk-6PVCCKX4.mjs";
|
|
112
112
|
import "./chunk-X2SLQ73Q.mjs";
|
|
113
113
|
import "./chunk-SAIDGUHG.mjs";
|
|
114
|
-
import {
|
|
115
|
-
presetGeneratorFn
|
|
116
|
-
} from "./chunk-CDBRCMR4.mjs";
|
|
117
|
-
import {
|
|
118
|
-
configSchemaGeneratorFn
|
|
119
|
-
} from "./chunk-REKF65PT.mjs";
|
|
120
114
|
import {
|
|
121
115
|
initGenerator
|
|
122
116
|
} from "./chunk-437WGH2M.mjs";
|
|
@@ -126,9 +120,15 @@ import {
|
|
|
126
120
|
import {
|
|
127
121
|
nodeLibraryGeneratorFn
|
|
128
122
|
} from "./chunk-ZM7BQH6Q.mjs";
|
|
123
|
+
import {
|
|
124
|
+
presetGeneratorFn
|
|
125
|
+
} from "./chunk-CDBRCMR4.mjs";
|
|
129
126
|
import {
|
|
130
127
|
browserLibraryGeneratorFn
|
|
131
128
|
} from "./chunk-TMUZX6IO.mjs";
|
|
129
|
+
import {
|
|
130
|
+
configSchemaGeneratorFn
|
|
131
|
+
} from "./chunk-REKF65PT.mjs";
|
|
132
132
|
import {
|
|
133
133
|
createProjectTsConfigJson,
|
|
134
134
|
getOutputPath,
|
|
@@ -10,13 +10,38 @@ declare const DefaultCargoPluginProfileMap: {
|
|
|
10
10
|
development: string;
|
|
11
11
|
production: string;
|
|
12
12
|
};
|
|
13
|
+
/**
|
|
14
|
+
* Options for configuring the Storm Rust Nx plugin
|
|
15
|
+
*/
|
|
13
16
|
interface CargoPluginOptions {
|
|
17
|
+
/**
|
|
18
|
+
* Whether to include Rust applications as projects in the workspace
|
|
19
|
+
*/
|
|
14
20
|
includeApps?: boolean;
|
|
21
|
+
/**
|
|
22
|
+
* Whether to skip generating documentation for the projects
|
|
23
|
+
*/
|
|
15
24
|
skipDocs?: boolean;
|
|
25
|
+
/**
|
|
26
|
+
* The Rust toolchain to use for executing cargo commands
|
|
27
|
+
*/
|
|
16
28
|
toolchain?: "stable" | "beta" | "nightly";
|
|
29
|
+
/**
|
|
30
|
+
* Custom profile mappings for cargo build profiles
|
|
31
|
+
*/
|
|
17
32
|
profiles?: CargoPluginProfileMap;
|
|
18
33
|
}
|
|
34
|
+
/**
|
|
35
|
+
* Create nodes for Rust projects based on Cargo.toml files
|
|
36
|
+
*/
|
|
19
37
|
declare const createNodesV2: CreateNodesV2<CargoPluginOptions | undefined>;
|
|
38
|
+
/**
|
|
39
|
+
* Create dependencies between Rust projects based on Cargo metadata
|
|
40
|
+
*
|
|
41
|
+
* @param options - The user provided plugin options
|
|
42
|
+
* @param context - The plugin context
|
|
43
|
+
* @returns An array of project graph dependencies
|
|
44
|
+
*/
|
|
20
45
|
declare const createDependencies: CreateDependencies<CargoPluginOptions>;
|
|
21
46
|
|
|
22
47
|
export { type CargoPluginOptions, type CargoPluginProfileMap, DefaultCargoPluginProfileMap, createDependencies, createNodesV2, description, name };
|
|
@@ -10,13 +10,38 @@ declare const DefaultCargoPluginProfileMap: {
|
|
|
10
10
|
development: string;
|
|
11
11
|
production: string;
|
|
12
12
|
};
|
|
13
|
+
/**
|
|
14
|
+
* Options for configuring the Storm Rust Nx plugin
|
|
15
|
+
*/
|
|
13
16
|
interface CargoPluginOptions {
|
|
17
|
+
/**
|
|
18
|
+
* Whether to include Rust applications as projects in the workspace
|
|
19
|
+
*/
|
|
14
20
|
includeApps?: boolean;
|
|
21
|
+
/**
|
|
22
|
+
* Whether to skip generating documentation for the projects
|
|
23
|
+
*/
|
|
15
24
|
skipDocs?: boolean;
|
|
25
|
+
/**
|
|
26
|
+
* The Rust toolchain to use for executing cargo commands
|
|
27
|
+
*/
|
|
16
28
|
toolchain?: "stable" | "beta" | "nightly";
|
|
29
|
+
/**
|
|
30
|
+
* Custom profile mappings for cargo build profiles
|
|
31
|
+
*/
|
|
17
32
|
profiles?: CargoPluginProfileMap;
|
|
18
33
|
}
|
|
34
|
+
/**
|
|
35
|
+
* Create nodes for Rust projects based on Cargo.toml files
|
|
36
|
+
*/
|
|
19
37
|
declare const createNodesV2: CreateNodesV2<CargoPluginOptions | undefined>;
|
|
38
|
+
/**
|
|
39
|
+
* Create dependencies between Rust projects based on Cargo metadata
|
|
40
|
+
*
|
|
41
|
+
* @param options - The user provided plugin options
|
|
42
|
+
* @param context - The plugin context
|
|
43
|
+
* @returns An array of project graph dependencies
|
|
44
|
+
*/
|
|
20
45
|
declare const createDependencies: CreateDependencies<CargoPluginOptions>;
|
|
21
46
|
|
|
22
47
|
export { type CargoPluginOptions, type CargoPluginProfileMap, DefaultCargoPluginProfileMap, createDependencies, createNodesV2, description, name };
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkYYBWK3LEjs = require('../../../chunk-YYBWK3LE.js');
|
|
8
8
|
require('../../../chunk-J6F3WHRB.js');
|
|
9
9
|
require('../../../chunk-LJDV7HFT.js');
|
|
10
10
|
require('../../../chunk-AX3RSZT7.js');
|
|
@@ -14,4 +14,4 @@ require('../../../chunk-AX3RSZT7.js');
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
exports.DefaultCargoPluginProfileMap =
|
|
17
|
+
exports.DefaultCargoPluginProfileMap = _chunkYYBWK3LEjs.DefaultCargoPluginProfileMap; exports.createDependencies = _chunkYYBWK3LEjs.createDependencies; exports.createNodesV2 = _chunkYYBWK3LEjs.createNodesV2; exports.description = _chunkYYBWK3LEjs.description; exports.name = _chunkYYBWK3LEjs.name;
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkYYBWK3LEjs = require('../../../chunk-YYBWK3LE.js');
|
|
8
8
|
require('../../../chunk-J6F3WHRB.js');
|
|
9
9
|
require('../../../chunk-LJDV7HFT.js');
|
|
10
10
|
require('../../../chunk-AX3RSZT7.js');
|
|
@@ -14,4 +14,4 @@ require('../../../chunk-AX3RSZT7.js');
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
exports.DefaultCargoPluginProfileMap =
|
|
17
|
+
exports.DefaultCargoPluginProfileMap = _chunkYYBWK3LEjs.DefaultCargoPluginProfileMap; exports.createDependencies = _chunkYYBWK3LEjs.createDependencies; exports.createNodesV2 = _chunkYYBWK3LEjs.createNodesV2; exports.description = _chunkYYBWK3LEjs.description; exports.name = _chunkYYBWK3LEjs.name;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/workspace-tools",
|
|
3
|
-
"version": "1.292.
|
|
3
|
+
"version": "1.292.26",
|
|
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",
|
|
@@ -238,12 +238,12 @@
|
|
|
238
238
|
"@size-limit/esbuild": "11.1.4",
|
|
239
239
|
"@size-limit/esbuild-why": "11.1.4",
|
|
240
240
|
"@size-limit/file": "11.1.4",
|
|
241
|
-
"@storm-software/esbuild": "^0.53.
|
|
242
|
-
"@storm-software/npm-tools": "^0.5.
|
|
243
|
-
"@storm-software/pnpm-tools": "^0.6.
|
|
244
|
-
"@storm-software/prettier": "^0.57.
|
|
245
|
-
"@storm-software/tsdown": "^0.45.
|
|
246
|
-
"@storm-software/unbuild": "^0.57.
|
|
241
|
+
"@storm-software/esbuild": "^0.53.26",
|
|
242
|
+
"@storm-software/npm-tools": "^0.5.26",
|
|
243
|
+
"@storm-software/pnpm-tools": "^0.6.26",
|
|
244
|
+
"@storm-software/prettier": "^0.57.26",
|
|
245
|
+
"@storm-software/tsdown": "^0.45.26",
|
|
246
|
+
"@storm-software/unbuild": "^0.57.26",
|
|
247
247
|
"fs-extra": "11.2.0",
|
|
248
248
|
"glob": "^11.0.3",
|
|
249
249
|
"jiti": "2.4.2",
|
|
@@ -268,5 +268,5 @@
|
|
|
268
268
|
"publishConfig": { "access": "public" },
|
|
269
269
|
"executors": "./executors.json",
|
|
270
270
|
"generators": "./generators.json",
|
|
271
|
-
"gitHead": "
|
|
271
|
+
"gitHead": "2a687d65439881f5475bf5b01f6fce9222ffb072"
|
|
272
272
|
}
|