@storm-software/workspace-tools 1.273.7 → 1.273.9
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 +20 -0
- package/config/base.json +1 -0
- package/dist/{chunk-A6H2SCIM.mjs → chunk-2PZQYXN7.mjs} +25 -22
- package/dist/{chunk-CUMWQELT.js → chunk-J43B54ZW.js} +32 -29
- package/dist/executors.js +7 -7
- package/dist/executors.mjs +7 -7
- package/dist/generators.js +3 -3
- package/dist/generators.mjs +3 -3
- package/dist/index.js +10 -10
- package/dist/index.mjs +10 -10
- package/dist/src/executors/npm-publish/executor.js +2 -2
- package/dist/src/executors/npm-publish/executor.mjs +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Workspace Tools
|
|
4
4
|
|
|
5
|
+
## [1.273.8](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.273.8) (2025-05-13)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **workspace-tools:** Resolve issue with null version written to package.json
|
|
10
|
+
|
|
11
|
+
## [1.273.7](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.273.7) (2025-05-13)
|
|
12
|
+
|
|
13
|
+
### Miscellaneous
|
|
14
|
+
|
|
15
|
+
- **monorepo:** Regenerate README markdown files
|
|
16
|
+
|
|
17
|
+
### Updated Dependencies
|
|
18
|
+
|
|
19
|
+
- Updated prettier to 0.51.7
|
|
20
|
+
- Updated esbuild to 0.41.7
|
|
21
|
+
- Updated esbuild to 0.41.7
|
|
22
|
+
- Updated unbuild to 0.47.7
|
|
23
|
+
- Updated unbuild to 0.47.7
|
|
24
|
+
|
|
5
25
|
## [1.273.6](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.273.6) (2025-05-09)
|
|
6
26
|
|
|
7
27
|
### Miscellaneous
|
package/config/base.json
CHANGED
|
@@ -25,8 +25,9 @@ async function npmPublishExecutorFn(options, context) {
|
|
|
25
25
|
context.root,
|
|
26
26
|
options.packageRoot || joinPaths("dist", projectConfig.root)
|
|
27
27
|
);
|
|
28
|
-
const projectRoot = context.projectsConfigurations.projects[context.projectName]
|
|
28
|
+
const projectRoot = context.projectsConfigurations.projects[context.projectName]?.root ? joinPaths(
|
|
29
29
|
context.root,
|
|
30
|
+
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
30
31
|
context.projectsConfigurations.projects[context.projectName].root
|
|
31
32
|
) : packageRoot;
|
|
32
33
|
const packageJsonPath = joinPaths(packageRoot, "package.json");
|
|
@@ -45,28 +46,30 @@ async function npmPublishExecutorFn(options, context) {
|
|
|
45
46
|
const projectPackageJson = JSON.parse(projectPackageJsonFile);
|
|
46
47
|
if (packageJson.version !== projectPackageJson.version) {
|
|
47
48
|
console.warn(
|
|
48
|
-
`The version in the package.json file at ${packageJsonPath} does not match the version in the package.json file at ${projectPackageJsonPath}. This file will be updated to match the version in the project package.json file.`
|
|
49
|
-
);
|
|
50
|
-
packageJson.version = projectPackageJson.version;
|
|
51
|
-
await writeFile(
|
|
52
|
-
packageJsonPath,
|
|
53
|
-
await format(JSON.stringify(packageJson), {
|
|
54
|
-
parser: "json",
|
|
55
|
-
proseWrap: "always",
|
|
56
|
-
trailingComma: "none",
|
|
57
|
-
tabWidth: 2,
|
|
58
|
-
semi: true,
|
|
59
|
-
singleQuote: false,
|
|
60
|
-
quoteProps: "as-needed",
|
|
61
|
-
insertPragma: false,
|
|
62
|
-
bracketSameLine: true,
|
|
63
|
-
printWidth: 80,
|
|
64
|
-
bracketSpacing: true,
|
|
65
|
-
arrowParens: "avoid",
|
|
66
|
-
endOfLine: "lf",
|
|
67
|
-
plugins: ["prettier-plugin-pkg"]
|
|
68
|
-
})
|
|
49
|
+
`The version in the package.json file at ${packageJsonPath} (current: ${packageJson.version}) does not match the version in the package.json file at ${projectPackageJsonPath} (current: ${projectPackageJson.version}). This file will be updated to match the version in the project package.json file.`
|
|
69
50
|
);
|
|
51
|
+
if (projectPackageJson.version) {
|
|
52
|
+
packageJson.version = projectPackageJson.version;
|
|
53
|
+
await writeFile(
|
|
54
|
+
packageJsonPath,
|
|
55
|
+
await format(JSON.stringify(packageJson), {
|
|
56
|
+
parser: "json",
|
|
57
|
+
proseWrap: "always",
|
|
58
|
+
trailingComma: "none",
|
|
59
|
+
tabWidth: 2,
|
|
60
|
+
semi: true,
|
|
61
|
+
singleQuote: false,
|
|
62
|
+
quoteProps: "as-needed",
|
|
63
|
+
insertPragma: false,
|
|
64
|
+
bracketSameLine: true,
|
|
65
|
+
printWidth: 80,
|
|
66
|
+
bracketSpacing: true,
|
|
67
|
+
arrowParens: "avoid",
|
|
68
|
+
endOfLine: "lf",
|
|
69
|
+
plugins: ["prettier-plugin-pkg"]
|
|
70
|
+
})
|
|
71
|
+
);
|
|
72
|
+
}
|
|
70
73
|
}
|
|
71
74
|
const packageName = packageJson.name;
|
|
72
75
|
console.info(
|
|
@@ -25,8 +25,9 @@ async function npmPublishExecutorFn(options, context) {
|
|
|
25
25
|
context.root,
|
|
26
26
|
options.packageRoot || _chunk53DNHF7Bjs.joinPaths.call(void 0, "dist", projectConfig.root)
|
|
27
27
|
);
|
|
28
|
-
const projectRoot = context.projectsConfigurations.projects[context.projectName].root ? _chunk53DNHF7Bjs.joinPaths.call(void 0,
|
|
28
|
+
const projectRoot = _optionalChain([context, 'access', _4 => _4.projectsConfigurations, 'access', _5 => _5.projects, 'access', _6 => _6[context.projectName], 'optionalAccess', _7 => _7.root]) ? _chunk53DNHF7Bjs.joinPaths.call(void 0,
|
|
29
29
|
context.root,
|
|
30
|
+
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
30
31
|
context.projectsConfigurations.projects[context.projectName].root
|
|
31
32
|
) : packageRoot;
|
|
32
33
|
const packageJsonPath = _chunk53DNHF7Bjs.joinPaths.call(void 0, packageRoot, "package.json");
|
|
@@ -45,28 +46,30 @@ async function npmPublishExecutorFn(options, context) {
|
|
|
45
46
|
const projectPackageJson = JSON.parse(projectPackageJsonFile);
|
|
46
47
|
if (packageJson.version !== projectPackageJson.version) {
|
|
47
48
|
console.warn(
|
|
48
|
-
`The version in the package.json file at ${packageJsonPath} does not match the version in the package.json file at ${projectPackageJsonPath}. This file will be updated to match the version in the project package.json file.`
|
|
49
|
-
);
|
|
50
|
-
packageJson.version = projectPackageJson.version;
|
|
51
|
-
await _promises.writeFile.call(void 0,
|
|
52
|
-
packageJsonPath,
|
|
53
|
-
await _prettier.format.call(void 0, JSON.stringify(packageJson), {
|
|
54
|
-
parser: "json",
|
|
55
|
-
proseWrap: "always",
|
|
56
|
-
trailingComma: "none",
|
|
57
|
-
tabWidth: 2,
|
|
58
|
-
semi: true,
|
|
59
|
-
singleQuote: false,
|
|
60
|
-
quoteProps: "as-needed",
|
|
61
|
-
insertPragma: false,
|
|
62
|
-
bracketSameLine: true,
|
|
63
|
-
printWidth: 80,
|
|
64
|
-
bracketSpacing: true,
|
|
65
|
-
arrowParens: "avoid",
|
|
66
|
-
endOfLine: "lf",
|
|
67
|
-
plugins: ["prettier-plugin-pkg"]
|
|
68
|
-
})
|
|
49
|
+
`The version in the package.json file at ${packageJsonPath} (current: ${packageJson.version}) does not match the version in the package.json file at ${projectPackageJsonPath} (current: ${projectPackageJson.version}). This file will be updated to match the version in the project package.json file.`
|
|
69
50
|
);
|
|
51
|
+
if (projectPackageJson.version) {
|
|
52
|
+
packageJson.version = projectPackageJson.version;
|
|
53
|
+
await _promises.writeFile.call(void 0,
|
|
54
|
+
packageJsonPath,
|
|
55
|
+
await _prettier.format.call(void 0, JSON.stringify(packageJson), {
|
|
56
|
+
parser: "json",
|
|
57
|
+
proseWrap: "always",
|
|
58
|
+
trailingComma: "none",
|
|
59
|
+
tabWidth: 2,
|
|
60
|
+
semi: true,
|
|
61
|
+
singleQuote: false,
|
|
62
|
+
quoteProps: "as-needed",
|
|
63
|
+
insertPragma: false,
|
|
64
|
+
bracketSameLine: true,
|
|
65
|
+
printWidth: 80,
|
|
66
|
+
bracketSpacing: true,
|
|
67
|
+
arrowParens: "avoid",
|
|
68
|
+
endOfLine: "lf",
|
|
69
|
+
plugins: ["prettier-plugin-pkg"]
|
|
70
|
+
})
|
|
71
|
+
);
|
|
72
|
+
}
|
|
70
73
|
}
|
|
71
74
|
const packageName = packageJson.name;
|
|
72
75
|
console.info(
|
|
@@ -195,16 +198,16 @@ Note: If this is the first time this package has been published to NPM, this can
|
|
|
195
198
|
`
|
|
196
199
|
);
|
|
197
200
|
console.info("");
|
|
198
|
-
const stdoutData = JSON.parse(_optionalChain([err, 'access',
|
|
199
|
-
if (_optionalChain([stdoutData, 'optionalAccess',
|
|
201
|
+
const stdoutData = JSON.parse(_optionalChain([err, 'access', _8 => _8.stdout, 'optionalAccess', _9 => _9.toString, 'call', _10 => _10()]) || "{}");
|
|
202
|
+
if (_optionalChain([stdoutData, 'optionalAccess', _11 => _11.error]) && !(_optionalChain([stdoutData, 'access', _12 => _12.error, 'optionalAccess', _13 => _13.code, 'optionalAccess', _14 => _14.includes, 'call', _15 => _15("E404")]) && _optionalChain([stdoutData, 'access', _16 => _16.error, 'optionalAccess', _17 => _17.summary, 'optionalAccess', _18 => _18.includes, 'call', _19 => _19("no such package available")])) && !(_optionalChain([err, 'access', _20 => _20.stderr, 'optionalAccess', _21 => _21.toString, 'call', _22 => _22(), 'access', _23 => _23.includes, 'call', _24 => _24("E404")]) && _optionalChain([err, 'access', _25 => _25.stderr, 'optionalAccess', _26 => _26.toString, 'call', _27 => _27(), 'access', _28 => _28.includes, 'call', _29 => _29("no such package available")]))) {
|
|
200
203
|
console.error(
|
|
201
204
|
"npm dist-tag add error please see below for more information:"
|
|
202
205
|
);
|
|
203
206
|
if (stdoutData.error.summary) {
|
|
204
|
-
console.error(_optionalChain([stdoutData, 'access',
|
|
207
|
+
console.error(_optionalChain([stdoutData, 'access', _30 => _30.error, 'optionalAccess', _31 => _31.summary]));
|
|
205
208
|
}
|
|
206
209
|
if (stdoutData.error.detail) {
|
|
207
|
-
console.error(_optionalChain([stdoutData, 'access',
|
|
210
|
+
console.error(_optionalChain([stdoutData, 'access', _32 => _32.error, 'optionalAccess', _33 => _33.detail]));
|
|
208
211
|
}
|
|
209
212
|
if (context.isVerbose) {
|
|
210
213
|
console.error(
|
|
@@ -233,8 +236,8 @@ ${JSON.stringify(err2)}`
|
|
|
233
236
|
);
|
|
234
237
|
console.error(error);
|
|
235
238
|
console.info("");
|
|
236
|
-
const stdoutData = JSON.parse(_optionalChain([err, 'access',
|
|
237
|
-
if (!(_optionalChain([stdoutData, 'access',
|
|
239
|
+
const stdoutData = JSON.parse(_optionalChain([err, 'access', _34 => _34.stdout, 'optionalAccess', _35 => _35.toString, 'call', _36 => _36()]) || "{}");
|
|
240
|
+
if (!(_optionalChain([stdoutData, 'access', _37 => _37.error, 'optionalAccess', _38 => _38.code, 'optionalAccess', _39 => _39.includes, 'call', _40 => _40("E404")]) && _optionalChain([stdoutData, 'access', _41 => _41.error, 'optionalAccess', _42 => _42.summary, 'optionalAccess', _43 => _43.toLowerCase, 'call', _44 => _44(), 'access', _45 => _45.includes, 'call', _46 => _46("not found")])) && !(_optionalChain([err, 'access', _47 => _47.stderr, 'optionalAccess', _48 => _48.toString, 'call', _49 => _49(), 'access', _50 => _50.includes, 'call', _51 => _51("E404")]) && _optionalChain([err, 'access', _52 => _52.stderr, 'optionalAccess', _53 => _53.toString, 'call', _54 => _54(), 'access', _55 => _55.toLowerCase, 'call', _56 => _56(), 'access', _57 => _57.includes, 'call', _58 => _58("not found")]))) {
|
|
238
241
|
console.error(
|
|
239
242
|
`Something unexpected went wrong when checking for existing dist-tags.
|
|
240
243
|
|
|
@@ -281,7 +284,7 @@ Execution response: ${result.toString()}` : ""}
|
|
|
281
284
|
console.error("An error occured running npm publish.");
|
|
282
285
|
console.error("Please see below for more information:");
|
|
283
286
|
console.info("");
|
|
284
|
-
const stdoutData = JSON.parse(_optionalChain([err, 'access',
|
|
287
|
+
const stdoutData = JSON.parse(_optionalChain([err, 'access', _59 => _59.stdout, 'optionalAccess', _60 => _60.toString, 'call', _61 => _61()]) || "{}");
|
|
285
288
|
if (stdoutData.error.summary) {
|
|
286
289
|
console.error(stdoutData.error.summary);
|
|
287
290
|
console.error(stdoutData.error.summary);
|
package/dist/executors.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-7VDOGZYO.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkJ43B54ZWjs = require('./chunk-J43B54ZW.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
var _chunkC22PXFKFjs = require('./chunk-C22PXFKF.js');
|
|
@@ -13,25 +13,25 @@ var _chunkDYDIVZRWjs = require('./chunk-DYDIVZRW.js');
|
|
|
13
13
|
var _chunkMSCI7LQ2js = require('./chunk-MSCI7LQ2.js');
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
var _chunk3G3HNZ22js = require('./chunk-3G3HNZ22.js');
|
|
17
|
-
|
|
18
|
-
|
|
19
16
|
var _chunkTSP73RLPjs = require('./chunk-TSP73RLP.js');
|
|
20
17
|
|
|
21
18
|
|
|
22
19
|
var _chunk3QD2U6SSjs = require('./chunk-3QD2U6SS.js');
|
|
23
20
|
|
|
24
21
|
|
|
22
|
+
var _chunkBNV64O5Ljs = require('./chunk-BNV64O5L.js');
|
|
23
|
+
|
|
24
|
+
|
|
25
25
|
var _chunkON5324R7js = require('./chunk-ON5324R7.js');
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
var _chunkM75P2EGZjs = require('./chunk-M75P2EGZ.js');
|
|
29
29
|
|
|
30
30
|
|
|
31
|
-
var
|
|
31
|
+
var _chunkKF6AKLGEjs = require('./chunk-KF6AKLGE.js');
|
|
32
32
|
|
|
33
33
|
|
|
34
|
-
var
|
|
34
|
+
var _chunk3G3HNZ22js = require('./chunk-3G3HNZ22.js');
|
|
35
35
|
require('./chunk-F6X43VUX.js');
|
|
36
36
|
require('./chunk-LJDV7HFT.js');
|
|
37
37
|
require('./chunk-EDMNYJEB.js');
|
|
@@ -54,4 +54,4 @@ require('./chunk-3RG5ZIWI.js');
|
|
|
54
54
|
|
|
55
55
|
|
|
56
56
|
|
|
57
|
-
exports.LARGE_BUFFER =
|
|
57
|
+
exports.LARGE_BUFFER = _chunkJ43B54ZWjs.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkON5324R7js.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkM75P2EGZjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkBNV64O5Ljs.cargoClippyExecutor; exports.cargoDocExecutor = _chunkKF6AKLGEjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunk3G3HNZ22js.cargoFormatExecutor; exports.esbuildExecutorFn = _chunk3QD2U6SSjs.esbuildExecutorFn; exports.getRegistryVersion = _chunkTSP73RLPjs.getRegistryVersion; exports.sizeLimitExecutorFn = _chunkC22PXFKFjs.sizeLimitExecutorFn; exports.typiaExecutorFn = _chunkDYDIVZRWjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkMSCI7LQ2js.unbuildExecutorFn;
|
package/dist/executors.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import "./chunk-BLX5SLPC.mjs";
|
|
2
2
|
import {
|
|
3
3
|
LARGE_BUFFER
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-2PZQYXN7.mjs";
|
|
5
5
|
import {
|
|
6
6
|
sizeLimitExecutorFn
|
|
7
7
|
} from "./chunk-EQ3664ZD.mjs";
|
|
@@ -11,27 +11,27 @@ import {
|
|
|
11
11
|
import {
|
|
12
12
|
unbuildExecutorFn
|
|
13
13
|
} from "./chunk-Y5UH66KY.mjs";
|
|
14
|
-
import {
|
|
15
|
-
cargoFormatExecutor
|
|
16
|
-
} from "./chunk-AAQQSGPY.mjs";
|
|
17
14
|
import {
|
|
18
15
|
getRegistryVersion
|
|
19
16
|
} from "./chunk-5MOK3MSQ.mjs";
|
|
20
17
|
import {
|
|
21
18
|
esbuildExecutorFn
|
|
22
19
|
} from "./chunk-2PZOGRBP.mjs";
|
|
20
|
+
import {
|
|
21
|
+
cargoClippyExecutor
|
|
22
|
+
} from "./chunk-W2RLHQ24.mjs";
|
|
23
23
|
import {
|
|
24
24
|
cargoBuildExecutor
|
|
25
25
|
} from "./chunk-ZASRR3NW.mjs";
|
|
26
26
|
import {
|
|
27
27
|
cargoCheckExecutor
|
|
28
28
|
} from "./chunk-M6IYTP2T.mjs";
|
|
29
|
-
import {
|
|
30
|
-
cargoClippyExecutor
|
|
31
|
-
} from "./chunk-W2RLHQ24.mjs";
|
|
32
29
|
import {
|
|
33
30
|
cargoDocExecutor
|
|
34
31
|
} from "./chunk-AW3I76E2.mjs";
|
|
32
|
+
import {
|
|
33
|
+
cargoFormatExecutor
|
|
34
|
+
} from "./chunk-AAQQSGPY.mjs";
|
|
35
35
|
import "./chunk-KHT5W6AJ.mjs";
|
|
36
36
|
import "./chunk-6LP3KKXE.mjs";
|
|
37
37
|
import "./chunk-R2WP5YDO.mjs";
|
package/dist/generators.js
CHANGED
|
@@ -13,13 +13,13 @@ var _chunk2F5TLK3Cjs = require('./chunk-2F5TLK3C.js');
|
|
|
13
13
|
var _chunkSMRFUKN7js = require('./chunk-SMRFUKN7.js');
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
var
|
|
16
|
+
var _chunkS2JDNKK6js = require('./chunk-S2JDNKK6.js');
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
var
|
|
19
|
+
var _chunkOKSECMVKjs = require('./chunk-OKSECMVK.js');
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
var
|
|
22
|
+
var _chunkMNQIKYEBjs = require('./chunk-MNQIKYEB.js');
|
|
23
23
|
require('./chunk-U3YH5M4L.js');
|
|
24
24
|
require('./chunk-AX3RSZT7.js');
|
|
25
25
|
require('./chunk-HI4G4OOG.js');
|
package/dist/generators.mjs
CHANGED
|
@@ -11,15 +11,15 @@ import {
|
|
|
11
11
|
import {
|
|
12
12
|
browserLibraryGeneratorFn
|
|
13
13
|
} from "./chunk-6L7JKV7E.mjs";
|
|
14
|
+
import {
|
|
15
|
+
configSchemaGeneratorFn
|
|
16
|
+
} from "./chunk-DJYOYWNY.mjs";
|
|
14
17
|
import {
|
|
15
18
|
initGenerator
|
|
16
19
|
} from "./chunk-437WGH2M.mjs";
|
|
17
20
|
import {
|
|
18
21
|
neutralLibraryGeneratorFn
|
|
19
22
|
} from "./chunk-UQJ4W5YX.mjs";
|
|
20
|
-
import {
|
|
21
|
-
configSchemaGeneratorFn
|
|
22
|
-
} from "./chunk-DJYOYWNY.mjs";
|
|
23
23
|
import "./chunk-3PTWOMU2.mjs";
|
|
24
24
|
import "./chunk-F66XEAID.mjs";
|
|
25
25
|
import "./chunk-EK75QNMS.mjs";
|
package/dist/index.js
CHANGED
|
@@ -48,7 +48,7 @@ var _chunkA5CKB6IJjs = require('./chunk-A5CKB6IJ.js');
|
|
|
48
48
|
require('./chunk-7VDOGZYO.js');
|
|
49
49
|
|
|
50
50
|
|
|
51
|
-
var
|
|
51
|
+
var _chunkJ43B54ZWjs = require('./chunk-J43B54ZW.js');
|
|
52
52
|
|
|
53
53
|
|
|
54
54
|
var _chunkC22PXFKFjs = require('./chunk-C22PXFKF.js');
|
|
@@ -60,25 +60,25 @@ var _chunkDYDIVZRWjs = require('./chunk-DYDIVZRW.js');
|
|
|
60
60
|
var _chunkMSCI7LQ2js = require('./chunk-MSCI7LQ2.js');
|
|
61
61
|
|
|
62
62
|
|
|
63
|
-
var _chunk3G3HNZ22js = require('./chunk-3G3HNZ22.js');
|
|
64
|
-
|
|
65
|
-
|
|
66
63
|
var _chunkTSP73RLPjs = require('./chunk-TSP73RLP.js');
|
|
67
64
|
|
|
68
65
|
|
|
69
66
|
var _chunk3QD2U6SSjs = require('./chunk-3QD2U6SS.js');
|
|
70
67
|
|
|
71
68
|
|
|
69
|
+
var _chunkBNV64O5Ljs = require('./chunk-BNV64O5L.js');
|
|
70
|
+
|
|
71
|
+
|
|
72
72
|
var _chunkON5324R7js = require('./chunk-ON5324R7.js');
|
|
73
73
|
|
|
74
74
|
|
|
75
75
|
var _chunkM75P2EGZjs = require('./chunk-M75P2EGZ.js');
|
|
76
76
|
|
|
77
77
|
|
|
78
|
-
var
|
|
78
|
+
var _chunkKF6AKLGEjs = require('./chunk-KF6AKLGE.js');
|
|
79
79
|
|
|
80
80
|
|
|
81
|
-
var
|
|
81
|
+
var _chunk3G3HNZ22js = require('./chunk-3G3HNZ22.js');
|
|
82
82
|
|
|
83
83
|
|
|
84
84
|
var _chunkF6X43VUXjs = require('./chunk-F6X43VUX.js');
|
|
@@ -108,13 +108,13 @@ var _chunk2F5TLK3Cjs = require('./chunk-2F5TLK3C.js');
|
|
|
108
108
|
var _chunkSMRFUKN7js = require('./chunk-SMRFUKN7.js');
|
|
109
109
|
|
|
110
110
|
|
|
111
|
-
var
|
|
111
|
+
var _chunkS2JDNKK6js = require('./chunk-S2JDNKK6.js');
|
|
112
112
|
|
|
113
113
|
|
|
114
|
-
var
|
|
114
|
+
var _chunkOKSECMVKjs = require('./chunk-OKSECMVK.js');
|
|
115
115
|
|
|
116
116
|
|
|
117
|
-
var
|
|
117
|
+
var _chunkMNQIKYEBjs = require('./chunk-MNQIKYEB.js');
|
|
118
118
|
|
|
119
119
|
|
|
120
120
|
|
|
@@ -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 =
|
|
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 = _chunk7Q2NOIDRjs.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 = _chunkSMRFUKN7js.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkLJDV7HFTjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk5ZFTWEKBjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkON5324R7js.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkM75P2EGZjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkBNV64O5Ljs.cargoClippyExecutor; exports.cargoCommand = _chunkLJDV7HFTjs.cargoCommand; exports.cargoCommandSync = _chunkLJDV7HFTjs.cargoCommandSync; exports.cargoDocExecutor = _chunkKF6AKLGEjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunk3G3HNZ22js.cargoFormatExecutor; exports.cargoMetadata = _chunkLJDV7HFTjs.cargoMetadata; exports.cargoRunCommand = _chunkLJDV7HFTjs.cargoRunCommand; exports.childProcess = _chunkLJDV7HFTjs.childProcess; exports.configSchemaGeneratorFn = _chunkS2JDNKK6js.configSchemaGeneratorFn; exports.createCliOptions = _chunkQVYCDINGjs.createCliOptions; exports.createProjectTsConfigJson = _chunkU3YH5M4Ljs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunk3QD2U6SSjs.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 = _chunk7Q2NOIDRjs.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 = _chunkTSP73RLPjs.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 = _chunkMNQIKYEBjs.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunkTVH6TDEDjs.nodeLibraryGeneratorFn; exports.nodeVersion = _chunkHI4G4OOGjs.nodeVersion; exports.normalizeOptions = _chunkU3YH5M4Ljs.normalizeOptions; exports.nxVersion = _chunkHI4G4OOGjs.nxVersion; exports.pnpmUpdate = _chunkF6X43VUXjs.pnpmUpdate; exports.pnpmVersion = _chunkHI4G4OOGjs.pnpmVersion; exports.presetGeneratorFn = _chunkY7JE33K2js.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkHI4G4OOGjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkHI4G4OOGjs.prettierPrismaVersion; exports.prettierVersion = _chunkHI4G4OOGjs.prettierVersion; exports.releaseVersionGeneratorFn = _chunk2F5TLK3Cjs.releaseVersionGeneratorFn; exports.runProcess = _chunkLJDV7HFTjs.runProcess; exports.semanticReleaseVersion = _chunkHI4G4OOGjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunkAX3RSZT7js.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunkC22PXFKFjs.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 = _chunkIL3R5ZVSjs.typescript_build_executor_untyped_default; exports.typescriptLibraryGeneratorSchema = _chunk2AVWFUXPjs.typescript_library_generator_untyped_default; exports.typescriptVersion = _chunkHI4G4OOGjs.typescriptVersion; exports.typiaExecutorFn = _chunkDYDIVZRWjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkMSCI7LQ2js.unbuildExecutorFn; exports.verdaccioVersion = _chunkHI4G4OOGjs.verdaccioVersion; exports.withRunExecutor = _chunkVUSG5IWMjs.withRunExecutor; exports.withRunGenerator = _chunkQWRE2UFSjs.withRunGenerator;
|
package/dist/index.mjs
CHANGED
|
@@ -48,7 +48,7 @@ import {
|
|
|
48
48
|
import "./chunk-BLX5SLPC.mjs";
|
|
49
49
|
import {
|
|
50
50
|
LARGE_BUFFER
|
|
51
|
-
} from "./chunk-
|
|
51
|
+
} from "./chunk-2PZQYXN7.mjs";
|
|
52
52
|
import {
|
|
53
53
|
sizeLimitExecutorFn
|
|
54
54
|
} from "./chunk-EQ3664ZD.mjs";
|
|
@@ -58,27 +58,27 @@ import {
|
|
|
58
58
|
import {
|
|
59
59
|
unbuildExecutorFn
|
|
60
60
|
} from "./chunk-Y5UH66KY.mjs";
|
|
61
|
-
import {
|
|
62
|
-
cargoFormatExecutor
|
|
63
|
-
} from "./chunk-AAQQSGPY.mjs";
|
|
64
61
|
import {
|
|
65
62
|
getRegistryVersion
|
|
66
63
|
} from "./chunk-5MOK3MSQ.mjs";
|
|
67
64
|
import {
|
|
68
65
|
esbuildExecutorFn
|
|
69
66
|
} from "./chunk-2PZOGRBP.mjs";
|
|
67
|
+
import {
|
|
68
|
+
cargoClippyExecutor
|
|
69
|
+
} from "./chunk-W2RLHQ24.mjs";
|
|
70
70
|
import {
|
|
71
71
|
cargoBuildExecutor
|
|
72
72
|
} from "./chunk-ZASRR3NW.mjs";
|
|
73
73
|
import {
|
|
74
74
|
cargoCheckExecutor
|
|
75
75
|
} from "./chunk-M6IYTP2T.mjs";
|
|
76
|
-
import {
|
|
77
|
-
cargoClippyExecutor
|
|
78
|
-
} from "./chunk-W2RLHQ24.mjs";
|
|
79
76
|
import {
|
|
80
77
|
cargoDocExecutor
|
|
81
78
|
} from "./chunk-AW3I76E2.mjs";
|
|
79
|
+
import {
|
|
80
|
+
cargoFormatExecutor
|
|
81
|
+
} from "./chunk-AAQQSGPY.mjs";
|
|
82
82
|
import {
|
|
83
83
|
pnpmUpdate
|
|
84
84
|
} from "./chunk-KHT5W6AJ.mjs";
|
|
@@ -106,15 +106,15 @@ import {
|
|
|
106
106
|
import {
|
|
107
107
|
browserLibraryGeneratorFn
|
|
108
108
|
} from "./chunk-6L7JKV7E.mjs";
|
|
109
|
+
import {
|
|
110
|
+
configSchemaGeneratorFn
|
|
111
|
+
} from "./chunk-DJYOYWNY.mjs";
|
|
109
112
|
import {
|
|
110
113
|
initGenerator
|
|
111
114
|
} from "./chunk-437WGH2M.mjs";
|
|
112
115
|
import {
|
|
113
116
|
neutralLibraryGeneratorFn
|
|
114
117
|
} from "./chunk-UQJ4W5YX.mjs";
|
|
115
|
-
import {
|
|
116
|
-
configSchemaGeneratorFn
|
|
117
|
-
} from "./chunk-DJYOYWNY.mjs";
|
|
118
118
|
import {
|
|
119
119
|
createProjectTsConfigJson,
|
|
120
120
|
getOutputPath,
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkJ43B54ZWjs = require('../../../chunk-J43B54ZW.js');
|
|
5
5
|
require('../../../chunk-F6X43VUX.js');
|
|
6
6
|
require('../../../chunk-53DNHF7B.js');
|
|
7
7
|
require('../../../chunk-3RG5ZIWI.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.LARGE_BUFFER =
|
|
11
|
+
exports.LARGE_BUFFER = _chunkJ43B54ZWjs.LARGE_BUFFER; exports.default = _chunkJ43B54ZWjs.npmPublishExecutorFn;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/workspace-tools",
|
|
3
|
-
"version": "1.273.
|
|
3
|
+
"version": "1.273.9",
|
|
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.41.
|
|
211
|
+
"@storm-software/esbuild": "^0.41.8",
|
|
212
212
|
"@storm-software/prettier": "^0.51.7",
|
|
213
|
-
"@storm-software/unbuild": "^0.47.
|
|
213
|
+
"@storm-software/unbuild": "^0.47.8",
|
|
214
214
|
"fs-extra": "11.2.0",
|
|
215
215
|
"glob": "^11.0.1",
|
|
216
216
|
"jiti": "^2.4.2",
|