@storm-software/workspace-tools 1.285.0 → 1.286.0
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 +21 -0
- package/README.md +1 -2
- package/dist/chunk-5BP7WBYT.mjs +52 -0
- package/dist/{chunk-3G7XO5ON.mjs → chunk-BNDXPQJL.mjs} +88 -99
- package/dist/{chunk-BZTR7YL6.js → chunk-GF6O2RXB.js} +6 -10
- package/dist/chunk-NTQG45CW.js +52 -0
- package/dist/{chunk-D26STI4S.mjs → chunk-OZFFOIQJ.mjs} +5 -9
- package/dist/{chunk-G77OCEMB.js → chunk-QEPFDTFD.js} +99 -110
- package/dist/executors.js +3 -2
- package/dist/executors.mjs +2 -1
- package/dist/generators.js +3 -2
- package/dist/generators.mjs +2 -1
- package/dist/index.js +4 -3
- package/dist/index.mjs +3 -2
- package/dist/src/executors/npm-publish/executor.js +5 -2
- package/dist/src/executors/npm-publish/executor.mjs +4 -1
- package/dist/src/generators/release-version/generator.js +3 -2
- package/dist/src/generators/release-version/generator.mjs +2 -1
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,27 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Workspace Tools
|
|
4
4
|
|
|
5
|
+
## [1.285.0](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.285.0) (2025-09-13)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- **eslint:** Update `eslint-plugin-tsdoc` patch to allow local custom config
|
|
10
|
+
files
|
|
11
|
+
([57257ac47](https://github.com/storm-software/storm-ops/commit/57257ac47))
|
|
12
|
+
|
|
13
|
+
### Miscellaneous
|
|
14
|
+
|
|
15
|
+
- **monorepo:** Update workspace package links
|
|
16
|
+
([762d49e0e](https://github.com/storm-software/storm-ops/commit/762d49e0e))
|
|
17
|
+
- **monorepo:** Regenerate README markdown files
|
|
18
|
+
([5a5124fd7](https://github.com/storm-software/storm-ops/commit/5a5124fd7))
|
|
19
|
+
|
|
20
|
+
### Updated Dependencies
|
|
21
|
+
|
|
22
|
+
- Updated prettier to 0.54.0
|
|
23
|
+
- Updated esbuild to 0.49.0
|
|
24
|
+
- Updated unbuild to 0.53.0
|
|
25
|
+
|
|
5
26
|
## [1.284.0](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.284.0) (2025-09-13)
|
|
6
27
|
|
|
7
28
|
### Features
|
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)
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import {
|
|
2
|
+
getConfig
|
|
3
|
+
} from "./chunk-HJPVYUW7.mjs";
|
|
4
|
+
|
|
5
|
+
// ../npm-tools/src/constants.ts
|
|
6
|
+
var DEFAULT_NPM_REGISTRY = "https://registry.npmjs.org";
|
|
7
|
+
var DEFAULT_GITHUB_REGISTRY = "https://npm.pkg.github.com";
|
|
8
|
+
var LATEST_NPM_TAG = "latest";
|
|
9
|
+
var DEFAULT_NPM_TAG = LATEST_NPM_TAG;
|
|
10
|
+
|
|
11
|
+
// ../npm-tools/src/helpers/get-registry.ts
|
|
12
|
+
import { exec } from "node:child_process";
|
|
13
|
+
async function getRegistry() {
|
|
14
|
+
return new Promise((resolve, reject) => {
|
|
15
|
+
exec("npm config get registry", (error, stdout, stderr) => {
|
|
16
|
+
if (error) {
|
|
17
|
+
return reject(error);
|
|
18
|
+
}
|
|
19
|
+
if (stderr) {
|
|
20
|
+
return reject(stderr);
|
|
21
|
+
}
|
|
22
|
+
return resolve(stdout.trim());
|
|
23
|
+
});
|
|
24
|
+
});
|
|
25
|
+
}
|
|
26
|
+
async function getNpmRegistry() {
|
|
27
|
+
if (process.env.STORM_REGISTRY_NPM) {
|
|
28
|
+
return process.env.STORM_REGISTRY_NPM;
|
|
29
|
+
}
|
|
30
|
+
const workspaceConfig = await getConfig();
|
|
31
|
+
if (workspaceConfig?.registry?.npm) {
|
|
32
|
+
return workspaceConfig?.registry?.npm;
|
|
33
|
+
}
|
|
34
|
+
return DEFAULT_NPM_REGISTRY;
|
|
35
|
+
}
|
|
36
|
+
async function getGitHubRegistry() {
|
|
37
|
+
if (process.env.STORM_REGISTRY_GITHUB) {
|
|
38
|
+
return process.env.STORM_REGISTRY_GITHUB;
|
|
39
|
+
}
|
|
40
|
+
const workspaceConfig = await getConfig();
|
|
41
|
+
if (workspaceConfig?.registry?.github) {
|
|
42
|
+
return workspaceConfig?.registry?.github;
|
|
43
|
+
}
|
|
44
|
+
return DEFAULT_GITHUB_REGISTRY;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export {
|
|
48
|
+
DEFAULT_NPM_TAG,
|
|
49
|
+
getRegistry,
|
|
50
|
+
getNpmRegistry,
|
|
51
|
+
getGitHubRegistry
|
|
52
|
+
};
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
import {
|
|
2
|
+
DEFAULT_NPM_TAG,
|
|
3
|
+
getGitHubRegistry,
|
|
4
|
+
getNpmRegistry,
|
|
5
|
+
getRegistry
|
|
6
|
+
} from "./chunk-5BP7WBYT.mjs";
|
|
1
7
|
import {
|
|
2
8
|
modifyCargoTable,
|
|
3
9
|
parseCargoToml,
|
|
@@ -32,7 +38,7 @@ import {
|
|
|
32
38
|
import { resolveLocalPackageDependencies as resolveLocalPackageJsonDependencies } from "@nx/js/src/generators/release-version/utils/resolve-local-package-dependencies";
|
|
33
39
|
import { updateLockFile } from "@nx/js/src/release/utils/update-lock-file";
|
|
34
40
|
|
|
35
|
-
// ../git-tools/
|
|
41
|
+
// ../git-tools/dist/chunk-5XXXTVPU.js
|
|
36
42
|
var COMMIT_TYPES = {
|
|
37
43
|
/* --- Bumps version when selected --- */
|
|
38
44
|
"chore": {
|
|
@@ -238,62 +244,83 @@ var DEFAULT_MONOREPO_COMMIT_QUESTIONS = {
|
|
|
238
244
|
issuesBody: DEFAULT_MINIMAL_COMMIT_QUESTIONS.issuesBody
|
|
239
245
|
};
|
|
240
246
|
var DEFAULT_MINIMAL_COMMIT_RULES = {
|
|
241
|
-
"body-leading-blank": [1
|
|
242
|
-
"body-max-length": [2
|
|
243
|
-
"footer-leading-blank": [1
|
|
244
|
-
"footer-max-line-length": [2
|
|
245
|
-
"header-max-length": [2
|
|
246
|
-
"header-trim": [2
|
|
247
|
-
"subject-case": [2
|
|
248
|
-
"subject-empty": [2
|
|
249
|
-
"subject-full-stop": [2
|
|
250
|
-
"subject-max-length": [2
|
|
251
|
-
"subject-min-length": [2
|
|
252
|
-
"type-case": [2
|
|
253
|
-
"type-empty": [2
|
|
247
|
+
"body-leading-blank": [1, "always"],
|
|
248
|
+
"body-max-length": [2, "always", 600],
|
|
249
|
+
"footer-leading-blank": [1, "always"],
|
|
250
|
+
"footer-max-line-length": [2, "always", 150],
|
|
251
|
+
"header-max-length": [2, "always", 150],
|
|
252
|
+
"header-trim": [2, "always"],
|
|
253
|
+
"subject-case": [2, "always", ["sentence-case"]],
|
|
254
|
+
"subject-empty": [2, "never"],
|
|
255
|
+
"subject-full-stop": [2, "never", "."],
|
|
256
|
+
"subject-max-length": [2, "always", 150],
|
|
257
|
+
"subject-min-length": [2, "always", 3],
|
|
258
|
+
"type-case": [2, "always", "kebab-case"],
|
|
259
|
+
"type-empty": [2, "never"],
|
|
254
260
|
"type-enum": [
|
|
255
|
-
2
|
|
261
|
+
2,
|
|
256
262
|
"always",
|
|
257
263
|
Object.keys(COMMIT_TYPES)
|
|
258
264
|
],
|
|
259
|
-
"type-max-length": [2
|
|
260
|
-
"type-min-length": [2
|
|
261
|
-
"scope-case": 0
|
|
262
|
-
"scope-empty": 0
|
|
265
|
+
"type-max-length": [2, "always", 20],
|
|
266
|
+
"type-min-length": [2, "always", 3],
|
|
267
|
+
"scope-case": 0,
|
|
268
|
+
"scope-empty": 0
|
|
269
|
+
/* Disabled */
|
|
263
270
|
};
|
|
264
271
|
var DEFAULT_MONOREPO_COMMIT_RULES = {
|
|
265
|
-
"body-leading-blank": [1
|
|
266
|
-
"body-max-length": [2
|
|
267
|
-
"footer-leading-blank": [1
|
|
268
|
-
"footer-max-line-length": [2
|
|
269
|
-
"header-max-length": [2
|
|
270
|
-
"header-trim": [2
|
|
271
|
-
"subject-case": [2
|
|
272
|
-
"subject-empty": [2
|
|
273
|
-
"subject-full-stop": [2
|
|
274
|
-
"subject-max-length": [2
|
|
275
|
-
"subject-min-length": [2
|
|
276
|
-
"type-case": [2
|
|
277
|
-
"type-empty": [2
|
|
272
|
+
"body-leading-blank": [1, "always"],
|
|
273
|
+
"body-max-length": [2, "always", 600],
|
|
274
|
+
"footer-leading-blank": [1, "always"],
|
|
275
|
+
"footer-max-line-length": [2, "always", 150],
|
|
276
|
+
"header-max-length": [2, "always", 150],
|
|
277
|
+
"header-trim": [2, "always"],
|
|
278
|
+
"subject-case": [2, "always", ["sentence-case"]],
|
|
279
|
+
"subject-empty": [2, "never"],
|
|
280
|
+
"subject-full-stop": [2, "never", "."],
|
|
281
|
+
"subject-max-length": [2, "always", 150],
|
|
282
|
+
"subject-min-length": [2, "always", 3],
|
|
283
|
+
"type-case": [2, "always", "kebab-case"],
|
|
284
|
+
"type-empty": [2, "never"],
|
|
278
285
|
"type-enum": [
|
|
279
|
-
2
|
|
286
|
+
2,
|
|
280
287
|
"always",
|
|
281
288
|
Object.keys(COMMIT_TYPES)
|
|
282
289
|
],
|
|
283
|
-
"type-max-length": [2
|
|
284
|
-
"type-min-length": [2
|
|
285
|
-
"scope-case": [2
|
|
286
|
-
"scope-empty": [2
|
|
290
|
+
"type-max-length": [2, "always", 20],
|
|
291
|
+
"type-min-length": [2, "always", 3],
|
|
292
|
+
"scope-case": [2, "always", ["kebab-case"]],
|
|
293
|
+
"scope-empty": [2, "never"]
|
|
287
294
|
};
|
|
288
295
|
|
|
289
|
-
// ../git-tools/
|
|
296
|
+
// ../git-tools/dist/chunk-LSRFGWF5.js
|
|
290
297
|
var DEFAULT_CONVENTIONAL_COMMITS_CONFIG = {
|
|
291
298
|
questions: DEFAULT_MONOREPO_COMMIT_QUESTIONS,
|
|
292
299
|
types: COMMIT_TYPES
|
|
293
300
|
};
|
|
294
301
|
|
|
302
|
+
// ../npm-tools/src/helpers/get-version.ts
|
|
303
|
+
import { exec } from "node:child_process";
|
|
304
|
+
async function getVersion(packageName, tag = DEFAULT_NPM_TAG, options = {}) {
|
|
305
|
+
const { registry = getRegistry() } = options;
|
|
306
|
+
return new Promise((resolve, reject) => {
|
|
307
|
+
exec(
|
|
308
|
+
`npm view ${packageName} version --registry=${registry} --tag=${tag}`,
|
|
309
|
+
(error, stdout, stderr) => {
|
|
310
|
+
if (error) {
|
|
311
|
+
return reject(error);
|
|
312
|
+
}
|
|
313
|
+
if (stderr) {
|
|
314
|
+
return reject(stderr);
|
|
315
|
+
}
|
|
316
|
+
return resolve(stdout.trim());
|
|
317
|
+
}
|
|
318
|
+
);
|
|
319
|
+
});
|
|
320
|
+
}
|
|
321
|
+
|
|
295
322
|
// src/generators/release-version/generator.ts
|
|
296
|
-
import {
|
|
323
|
+
import { execSync } from "node:child_process";
|
|
297
324
|
import { relative } from "node:path";
|
|
298
325
|
import { IMPLICIT_DEFAULT_RELEASE_GROUP } from "nx/src/command-line/release/config/config";
|
|
299
326
|
import {
|
|
@@ -438,51 +465,36 @@ To fix this you will either need to add a package.json or Cargo.toml file at tha
|
|
|
438
465
|
}
|
|
439
466
|
switch (options.currentVersionResolver) {
|
|
440
467
|
case "registry": {
|
|
441
|
-
const metadata = options.currentVersionResolverMetadata;
|
|
442
|
-
const
|
|
443
|
-
const
|
|
444
|
-
const
|
|
468
|
+
const metadata = options.currentVersionResolverMetadata ?? {};
|
|
469
|
+
const tag = metadata.tag ?? DEFAULT_NPM_TAG;
|
|
470
|
+
const registry = metadata.registry ?? await getRegistry();
|
|
471
|
+
const npmRegistry = await getNpmRegistry();
|
|
472
|
+
const githubRegistry = await getGitHubRegistry();
|
|
445
473
|
if (options.releaseGroup.projectsRelationship === "independent") {
|
|
446
474
|
try {
|
|
447
|
-
currentVersion = await
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
}
|
|
459
|
-
);
|
|
460
|
-
});
|
|
475
|
+
currentVersion = await getVersion(packageName, tag, { registry });
|
|
476
|
+
if (!currentVersion) {
|
|
477
|
+
currentVersion = await getVersion(packageName, tag, {
|
|
478
|
+
registry: npmRegistry
|
|
479
|
+
});
|
|
480
|
+
if (!currentVersion) {
|
|
481
|
+
currentVersion = await getVersion(packageName, tag, {
|
|
482
|
+
registry: githubRegistry
|
|
483
|
+
});
|
|
484
|
+
}
|
|
485
|
+
}
|
|
461
486
|
log(
|
|
462
|
-
`\u{1F4C4} Resolved the current version as ${currentVersion} for tag "${tag}" from registry ${
|
|
487
|
+
`\u{1F4C4} Resolved the current version as ${currentVersion} for tag "${tag}" from registry ${registry}`
|
|
463
488
|
);
|
|
464
|
-
} catch
|
|
489
|
+
} catch {
|
|
465
490
|
try {
|
|
466
|
-
currentVersion = await
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
`npm view ${packageName} version --registry=${githubRegistry} --tag=${tag}`,
|
|
470
|
-
(error, stdout, stderr) => {
|
|
471
|
-
if (error) {
|
|
472
|
-
return reject(error);
|
|
473
|
-
}
|
|
474
|
-
if (stderr) {
|
|
475
|
-
return reject(stderr);
|
|
476
|
-
}
|
|
477
|
-
return resolve(stdout.trim());
|
|
478
|
-
}
|
|
479
|
-
);
|
|
480
|
-
}
|
|
481
|
-
);
|
|
491
|
+
currentVersion = await getVersion(packageName, tag, {
|
|
492
|
+
registry: githubRegistry
|
|
493
|
+
});
|
|
482
494
|
log(
|
|
483
495
|
`\u{1F4C4} Resolved the current version as ${currentVersion} for tag "${tag}" from registry ${githubRegistry}`
|
|
484
496
|
);
|
|
485
|
-
} catch
|
|
497
|
+
} catch {
|
|
486
498
|
if (options.fallbackCurrentVersionResolver === "disk") {
|
|
487
499
|
log(
|
|
488
500
|
`\u{1F4C4} Unable to resolve the current version from the registry ${npmRegistry}${githubRegistry ? ` or ${githubRegistry}` : ""}. Falling back to the version on disk of ${currentVersionFromDisk}`
|
|
@@ -858,29 +870,6 @@ Projects with packageRoot configured: ${Array.from(projectNameToPackageRootMap.k
|
|
|
858
870
|
}
|
|
859
871
|
}
|
|
860
872
|
var generator_default = releaseVersionGeneratorFn;
|
|
861
|
-
async function getNpmRegistry() {
|
|
862
|
-
if (process.env.STORM_REGISTRY_NPM) {
|
|
863
|
-
return process.env.STORM_REGISTRY_NPM;
|
|
864
|
-
}
|
|
865
|
-
const registry = await new Promise((resolve, reject) => {
|
|
866
|
-
exec("npm config get registry", (error, stdout, stderr) => {
|
|
867
|
-
if (error) {
|
|
868
|
-
return reject(error);
|
|
869
|
-
}
|
|
870
|
-
if (stderr) {
|
|
871
|
-
return reject(stderr);
|
|
872
|
-
}
|
|
873
|
-
return resolve(stdout.trim());
|
|
874
|
-
});
|
|
875
|
-
});
|
|
876
|
-
return registry ? registry : "https://registry.npmjs.org";
|
|
877
|
-
}
|
|
878
|
-
function getGitHubRegistry() {
|
|
879
|
-
if (process.env.STORM_REGISTRY_GITHUB) {
|
|
880
|
-
return process.env.STORM_REGISTRY_GITHUB;
|
|
881
|
-
}
|
|
882
|
-
return "https://npm.pkg.github.com";
|
|
883
|
-
}
|
|
884
873
|
function hasGitDiff(filePath) {
|
|
885
874
|
try {
|
|
886
875
|
const result = execSync(`git diff --name-only "${filePath}"`).toString();
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); async function _asyncNullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return await rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
2
|
|
|
3
3
|
var _chunk73IC2JQVjs = require('./chunk-73IC2JQV.js');
|
|
4
4
|
|
|
@@ -6,6 +6,10 @@ var _chunk73IC2JQVjs = require('./chunk-73IC2JQV.js');
|
|
|
6
6
|
var _chunkF6X43VUXjs = require('./chunk-F6X43VUX.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
+
|
|
10
|
+
var _chunkNTQG45CWjs = require('./chunk-NTQG45CW.js');
|
|
11
|
+
|
|
12
|
+
|
|
9
13
|
var _chunk53DNHF7Bjs = require('./chunk-53DNHF7B.js');
|
|
10
14
|
|
|
11
15
|
// src/executors/npm-publish/executor.ts
|
|
@@ -91,15 +95,7 @@ async function npmPublishExecutorFn(options, context) {
|
|
|
91
95
|
const npmViewCommandSegments = [
|
|
92
96
|
`npm view ${packageName} versions dist-tags --json`
|
|
93
97
|
];
|
|
94
|
-
const registry = options.registry
|
|
95
|
-
cwd: packageRoot,
|
|
96
|
-
env: {
|
|
97
|
-
...process.env,
|
|
98
|
-
FORCE_COLOR: "true"
|
|
99
|
-
},
|
|
100
|
-
maxBuffer: LARGE_BUFFER,
|
|
101
|
-
killSignal: "SIGTERM"
|
|
102
|
-
}).toString().trim();
|
|
98
|
+
const registry = await _asyncNullishCoalesce(options.registry, async () => ( (await _chunkNTQG45CWjs.getRegistry.call(void 0, ) || _chunkNTQG45CWjs.getNpmRegistry.call(void 0, ))));
|
|
103
99
|
if (registry) {
|
|
104
100
|
npmPublishCommandSegments.push(`--registry="${registry}" `);
|
|
105
101
|
npmViewCommandSegments.push(`--registry="${registry}" `);
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
|
+
|
|
3
|
+
var _chunkOSMA3OJGjs = require('./chunk-OSMA3OJG.js');
|
|
4
|
+
|
|
5
|
+
// ../npm-tools/src/constants.ts
|
|
6
|
+
var DEFAULT_NPM_REGISTRY = "https://registry.npmjs.org";
|
|
7
|
+
var DEFAULT_GITHUB_REGISTRY = "https://npm.pkg.github.com";
|
|
8
|
+
var LATEST_NPM_TAG = "latest";
|
|
9
|
+
var DEFAULT_NPM_TAG = LATEST_NPM_TAG;
|
|
10
|
+
|
|
11
|
+
// ../npm-tools/src/helpers/get-registry.ts
|
|
12
|
+
var _child_process = require('child_process');
|
|
13
|
+
async function getRegistry() {
|
|
14
|
+
return new Promise((resolve, reject) => {
|
|
15
|
+
_child_process.exec.call(void 0, "npm config get registry", (error, stdout, stderr) => {
|
|
16
|
+
if (error) {
|
|
17
|
+
return reject(error);
|
|
18
|
+
}
|
|
19
|
+
if (stderr) {
|
|
20
|
+
return reject(stderr);
|
|
21
|
+
}
|
|
22
|
+
return resolve(stdout.trim());
|
|
23
|
+
});
|
|
24
|
+
});
|
|
25
|
+
}
|
|
26
|
+
async function getNpmRegistry() {
|
|
27
|
+
if (process.env.STORM_REGISTRY_NPM) {
|
|
28
|
+
return process.env.STORM_REGISTRY_NPM;
|
|
29
|
+
}
|
|
30
|
+
const workspaceConfig = await _chunkOSMA3OJGjs.getConfig.call(void 0, );
|
|
31
|
+
if (_optionalChain([workspaceConfig, 'optionalAccess', _ => _.registry, 'optionalAccess', _2 => _2.npm])) {
|
|
32
|
+
return _optionalChain([workspaceConfig, 'optionalAccess', _3 => _3.registry, 'optionalAccess', _4 => _4.npm]);
|
|
33
|
+
}
|
|
34
|
+
return DEFAULT_NPM_REGISTRY;
|
|
35
|
+
}
|
|
36
|
+
async function getGitHubRegistry() {
|
|
37
|
+
if (process.env.STORM_REGISTRY_GITHUB) {
|
|
38
|
+
return process.env.STORM_REGISTRY_GITHUB;
|
|
39
|
+
}
|
|
40
|
+
const workspaceConfig = await _chunkOSMA3OJGjs.getConfig.call(void 0, );
|
|
41
|
+
if (_optionalChain([workspaceConfig, 'optionalAccess', _5 => _5.registry, 'optionalAccess', _6 => _6.github])) {
|
|
42
|
+
return _optionalChain([workspaceConfig, 'optionalAccess', _7 => _7.registry, 'optionalAccess', _8 => _8.github]);
|
|
43
|
+
}
|
|
44
|
+
return DEFAULT_GITHUB_REGISTRY;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
exports.DEFAULT_NPM_TAG = DEFAULT_NPM_TAG; exports.getRegistry = getRegistry; exports.getNpmRegistry = getNpmRegistry; exports.getGitHubRegistry = getGitHubRegistry;
|
|
@@ -4,6 +4,10 @@ import {
|
|
|
4
4
|
import {
|
|
5
5
|
pnpmUpdate
|
|
6
6
|
} from "./chunk-KHT5W6AJ.mjs";
|
|
7
|
+
import {
|
|
8
|
+
getNpmRegistry,
|
|
9
|
+
getRegistry
|
|
10
|
+
} from "./chunk-5BP7WBYT.mjs";
|
|
7
11
|
import {
|
|
8
12
|
joinPaths
|
|
9
13
|
} from "./chunk-U7JFVMCK.mjs";
|
|
@@ -91,15 +95,7 @@ async function npmPublishExecutorFn(options, context) {
|
|
|
91
95
|
const npmViewCommandSegments = [
|
|
92
96
|
`npm view ${packageName} versions dist-tags --json`
|
|
93
97
|
];
|
|
94
|
-
const registry = options.registry
|
|
95
|
-
cwd: packageRoot,
|
|
96
|
-
env: {
|
|
97
|
-
...process.env,
|
|
98
|
-
FORCE_COLOR: "true"
|
|
99
|
-
},
|
|
100
|
-
maxBuffer: LARGE_BUFFER,
|
|
101
|
-
killSignal: "SIGTERM"
|
|
102
|
-
}).toString().trim();
|
|
98
|
+
const registry = options.registry ?? (await getRegistry() || getNpmRegistry());
|
|
103
99
|
if (registry) {
|
|
104
100
|
npmPublishCommandSegments.push(`--registry="${registry}" `);
|
|
105
101
|
npmViewCommandSegments.push(`--registry="${registry}" `);
|
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } async function _asyncNullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return await rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } async function _asyncNullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return await rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
var _chunkNTQG45CWjs = require('./chunk-NTQG45CW.js');
|
|
7
|
+
|
|
2
8
|
|
|
3
9
|
|
|
4
10
|
|
|
@@ -32,7 +38,7 @@ var _devkit = require('@nx/devkit');
|
|
|
32
38
|
var _resolvelocalpackagedependencies = require('@nx/js/src/generators/release-version/utils/resolve-local-package-dependencies');
|
|
33
39
|
var _updatelockfile = require('@nx/js/src/release/utils/update-lock-file');
|
|
34
40
|
|
|
35
|
-
// ../git-tools/
|
|
41
|
+
// ../git-tools/dist/chunk-5XXXTVPU.js
|
|
36
42
|
var COMMIT_TYPES = {
|
|
37
43
|
/* --- Bumps version when selected --- */
|
|
38
44
|
"chore": {
|
|
@@ -238,62 +244,83 @@ var DEFAULT_MONOREPO_COMMIT_QUESTIONS = {
|
|
|
238
244
|
issuesBody: DEFAULT_MINIMAL_COMMIT_QUESTIONS.issuesBody
|
|
239
245
|
};
|
|
240
246
|
var DEFAULT_MINIMAL_COMMIT_RULES = {
|
|
241
|
-
"body-leading-blank": [1
|
|
242
|
-
"body-max-length": [2
|
|
243
|
-
"footer-leading-blank": [1
|
|
244
|
-
"footer-max-line-length": [2
|
|
245
|
-
"header-max-length": [2
|
|
246
|
-
"header-trim": [2
|
|
247
|
-
"subject-case": [2
|
|
248
|
-
"subject-empty": [2
|
|
249
|
-
"subject-full-stop": [2
|
|
250
|
-
"subject-max-length": [2
|
|
251
|
-
"subject-min-length": [2
|
|
252
|
-
"type-case": [2
|
|
253
|
-
"type-empty": [2
|
|
247
|
+
"body-leading-blank": [1, "always"],
|
|
248
|
+
"body-max-length": [2, "always", 600],
|
|
249
|
+
"footer-leading-blank": [1, "always"],
|
|
250
|
+
"footer-max-line-length": [2, "always", 150],
|
|
251
|
+
"header-max-length": [2, "always", 150],
|
|
252
|
+
"header-trim": [2, "always"],
|
|
253
|
+
"subject-case": [2, "always", ["sentence-case"]],
|
|
254
|
+
"subject-empty": [2, "never"],
|
|
255
|
+
"subject-full-stop": [2, "never", "."],
|
|
256
|
+
"subject-max-length": [2, "always", 150],
|
|
257
|
+
"subject-min-length": [2, "always", 3],
|
|
258
|
+
"type-case": [2, "always", "kebab-case"],
|
|
259
|
+
"type-empty": [2, "never"],
|
|
254
260
|
"type-enum": [
|
|
255
|
-
2
|
|
261
|
+
2,
|
|
256
262
|
"always",
|
|
257
263
|
Object.keys(COMMIT_TYPES)
|
|
258
264
|
],
|
|
259
|
-
"type-max-length": [2
|
|
260
|
-
"type-min-length": [2
|
|
261
|
-
"scope-case": 0
|
|
262
|
-
"scope-empty": 0
|
|
265
|
+
"type-max-length": [2, "always", 20],
|
|
266
|
+
"type-min-length": [2, "always", 3],
|
|
267
|
+
"scope-case": 0,
|
|
268
|
+
"scope-empty": 0
|
|
269
|
+
/* Disabled */
|
|
263
270
|
};
|
|
264
271
|
var DEFAULT_MONOREPO_COMMIT_RULES = {
|
|
265
|
-
"body-leading-blank": [1
|
|
266
|
-
"body-max-length": [2
|
|
267
|
-
"footer-leading-blank": [1
|
|
268
|
-
"footer-max-line-length": [2
|
|
269
|
-
"header-max-length": [2
|
|
270
|
-
"header-trim": [2
|
|
271
|
-
"subject-case": [2
|
|
272
|
-
"subject-empty": [2
|
|
273
|
-
"subject-full-stop": [2
|
|
274
|
-
"subject-max-length": [2
|
|
275
|
-
"subject-min-length": [2
|
|
276
|
-
"type-case": [2
|
|
277
|
-
"type-empty": [2
|
|
272
|
+
"body-leading-blank": [1, "always"],
|
|
273
|
+
"body-max-length": [2, "always", 600],
|
|
274
|
+
"footer-leading-blank": [1, "always"],
|
|
275
|
+
"footer-max-line-length": [2, "always", 150],
|
|
276
|
+
"header-max-length": [2, "always", 150],
|
|
277
|
+
"header-trim": [2, "always"],
|
|
278
|
+
"subject-case": [2, "always", ["sentence-case"]],
|
|
279
|
+
"subject-empty": [2, "never"],
|
|
280
|
+
"subject-full-stop": [2, "never", "."],
|
|
281
|
+
"subject-max-length": [2, "always", 150],
|
|
282
|
+
"subject-min-length": [2, "always", 3],
|
|
283
|
+
"type-case": [2, "always", "kebab-case"],
|
|
284
|
+
"type-empty": [2, "never"],
|
|
278
285
|
"type-enum": [
|
|
279
|
-
2
|
|
286
|
+
2,
|
|
280
287
|
"always",
|
|
281
288
|
Object.keys(COMMIT_TYPES)
|
|
282
289
|
],
|
|
283
|
-
"type-max-length": [2
|
|
284
|
-
"type-min-length": [2
|
|
285
|
-
"scope-case": [2
|
|
286
|
-
"scope-empty": [2
|
|
290
|
+
"type-max-length": [2, "always", 20],
|
|
291
|
+
"type-min-length": [2, "always", 3],
|
|
292
|
+
"scope-case": [2, "always", ["kebab-case"]],
|
|
293
|
+
"scope-empty": [2, "never"]
|
|
287
294
|
};
|
|
288
295
|
|
|
289
|
-
// ../git-tools/
|
|
296
|
+
// ../git-tools/dist/chunk-LSRFGWF5.js
|
|
290
297
|
var DEFAULT_CONVENTIONAL_COMMITS_CONFIG = {
|
|
291
298
|
questions: DEFAULT_MONOREPO_COMMIT_QUESTIONS,
|
|
292
299
|
types: COMMIT_TYPES
|
|
293
300
|
};
|
|
294
301
|
|
|
295
|
-
// src/
|
|
302
|
+
// ../npm-tools/src/helpers/get-version.ts
|
|
296
303
|
var _child_process = require('child_process');
|
|
304
|
+
async function getVersion(packageName, tag = _chunkNTQG45CWjs.DEFAULT_NPM_TAG, options = {}) {
|
|
305
|
+
const { registry = _chunkNTQG45CWjs.getRegistry.call(void 0, ) } = options;
|
|
306
|
+
return new Promise((resolve, reject) => {
|
|
307
|
+
_child_process.exec.call(void 0,
|
|
308
|
+
`npm view ${packageName} version --registry=${registry} --tag=${tag}`,
|
|
309
|
+
(error, stdout, stderr) => {
|
|
310
|
+
if (error) {
|
|
311
|
+
return reject(error);
|
|
312
|
+
}
|
|
313
|
+
if (stderr) {
|
|
314
|
+
return reject(stderr);
|
|
315
|
+
}
|
|
316
|
+
return resolve(stdout.trim());
|
|
317
|
+
}
|
|
318
|
+
);
|
|
319
|
+
});
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
// src/generators/release-version/generator.ts
|
|
323
|
+
|
|
297
324
|
var _path = require('path');
|
|
298
325
|
var _config = require('nx/src/command-line/release/config/config');
|
|
299
326
|
|
|
@@ -358,8 +385,8 @@ Valid values are: ${_versionlegacy.validReleaseVersionPrefixes.map((s) => `"${s}
|
|
|
358
385
|
options.currentVersionResolver ??= "git-tag";
|
|
359
386
|
const projects = options.projects;
|
|
360
387
|
const createResolvePackageRoot = (customPackageRoot) => (projectNode) => {
|
|
361
|
-
if (_optionalChain([projectNode, 'optionalAccess',
|
|
362
|
-
return _nullishCoalesce(_optionalChain([config, 'optionalAccess',
|
|
388
|
+
if (_optionalChain([projectNode, 'optionalAccess', _2 => _2.data, 'optionalAccess', _3 => _3.root]) === _optionalChain([config, 'optionalAccess', _4 => _4.workspaceRoot]) || _optionalChain([projectNode, 'optionalAccess', _5 => _5.data, 'optionalAccess', _6 => _6.root]) === ".") {
|
|
389
|
+
return _nullishCoalesce(_optionalChain([config, 'optionalAccess', _7 => _7.workspaceRoot]), () => ( _chunkHNFKVXBVjs.findWorkspaceRoot.call(void 0, )));
|
|
363
390
|
}
|
|
364
391
|
if (!customPackageRoot) {
|
|
365
392
|
return projectNode.data.root;
|
|
@@ -401,7 +428,7 @@ To fix this you will either need to add a package.json or Cargo.toml file at tha
|
|
|
401
428
|
);
|
|
402
429
|
}
|
|
403
430
|
const workspaceRelativePackagePath = _path.relative.call(void 0,
|
|
404
|
-
_nullishCoalesce(_optionalChain([config, 'optionalAccess',
|
|
431
|
+
_nullishCoalesce(_optionalChain([config, 'optionalAccess', _8 => _8.workspaceRoot]), () => ( _chunkHNFKVXBVjs.findWorkspaceRoot.call(void 0, ))),
|
|
405
432
|
tree.exists(packageJsonPath) ? packageJsonPath : cargoTomlPath
|
|
406
433
|
);
|
|
407
434
|
const log = (msg) => {
|
|
@@ -419,7 +446,7 @@ To fix this you will either need to add a package.json or Cargo.toml file at tha
|
|
|
419
446
|
currentVersionFromDisk = projectPackageJson.version;
|
|
420
447
|
} else if (tree.exists(cargoTomlPath)) {
|
|
421
448
|
const cargoToml = _chunk452FQZ3Bjs.parseCargoToml.call(void 0,
|
|
422
|
-
_optionalChain([tree, 'access',
|
|
449
|
+
_optionalChain([tree, 'access', _9 => _9.read, 'call', _10 => _10(cargoTomlPath), 'optionalAccess', _11 => _11.toString, 'call', _12 => _12("utf-8")])
|
|
423
450
|
);
|
|
424
451
|
log(
|
|
425
452
|
`\u{1F50D} Reading data for package "${cargoToml.package.name}" from ${workspaceRelativePackagePath}`
|
|
@@ -438,51 +465,36 @@ To fix this you will either need to add a package.json or Cargo.toml file at tha
|
|
|
438
465
|
}
|
|
439
466
|
switch (options.currentVersionResolver) {
|
|
440
467
|
case "registry": {
|
|
441
|
-
const metadata = options.currentVersionResolverMetadata;
|
|
442
|
-
const
|
|
443
|
-
const
|
|
444
|
-
const
|
|
468
|
+
const metadata = _nullishCoalesce(options.currentVersionResolverMetadata, () => ( {}));
|
|
469
|
+
const tag = _nullishCoalesce(metadata.tag, () => ( _chunkNTQG45CWjs.DEFAULT_NPM_TAG));
|
|
470
|
+
const registry = await _asyncNullishCoalesce(metadata.registry, async () => ( await _chunkNTQG45CWjs.getRegistry.call(void 0, )));
|
|
471
|
+
const npmRegistry = await _chunkNTQG45CWjs.getNpmRegistry.call(void 0, );
|
|
472
|
+
const githubRegistry = await _chunkNTQG45CWjs.getGitHubRegistry.call(void 0, );
|
|
445
473
|
if (options.releaseGroup.projectsRelationship === "independent") {
|
|
446
474
|
try {
|
|
447
|
-
currentVersion = await
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
}
|
|
459
|
-
);
|
|
460
|
-
});
|
|
475
|
+
currentVersion = await getVersion(packageName, tag, { registry });
|
|
476
|
+
if (!currentVersion) {
|
|
477
|
+
currentVersion = await getVersion(packageName, tag, {
|
|
478
|
+
registry: npmRegistry
|
|
479
|
+
});
|
|
480
|
+
if (!currentVersion) {
|
|
481
|
+
currentVersion = await getVersion(packageName, tag, {
|
|
482
|
+
registry: githubRegistry
|
|
483
|
+
});
|
|
484
|
+
}
|
|
485
|
+
}
|
|
461
486
|
log(
|
|
462
|
-
`\u{1F4C4} Resolved the current version as ${currentVersion} for tag "${tag}" from registry ${
|
|
487
|
+
`\u{1F4C4} Resolved the current version as ${currentVersion} for tag "${tag}" from registry ${registry}`
|
|
463
488
|
);
|
|
464
|
-
} catch (
|
|
489
|
+
} catch (e) {
|
|
465
490
|
try {
|
|
466
|
-
currentVersion = await
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
`npm view ${packageName} version --registry=${githubRegistry} --tag=${tag}`,
|
|
470
|
-
(error, stdout, stderr) => {
|
|
471
|
-
if (error) {
|
|
472
|
-
return reject(error);
|
|
473
|
-
}
|
|
474
|
-
if (stderr) {
|
|
475
|
-
return reject(stderr);
|
|
476
|
-
}
|
|
477
|
-
return resolve(stdout.trim());
|
|
478
|
-
}
|
|
479
|
-
);
|
|
480
|
-
}
|
|
481
|
-
);
|
|
491
|
+
currentVersion = await getVersion(packageName, tag, {
|
|
492
|
+
registry: githubRegistry
|
|
493
|
+
});
|
|
482
494
|
log(
|
|
483
495
|
`\u{1F4C4} Resolved the current version as ${currentVersion} for tag "${tag}" from registry ${githubRegistry}`
|
|
484
496
|
);
|
|
485
|
-
} catch (
|
|
497
|
+
} catch (e2) {
|
|
486
498
|
if (options.fallbackCurrentVersionResolver === "disk") {
|
|
487
499
|
log(
|
|
488
500
|
`\u{1F4C4} Unable to resolve the current version from the registry ${npmRegistry}${githubRegistry ? ` or ${githubRegistry}` : ""}. Falling back to the version on disk of ${currentVersionFromDisk}`
|
|
@@ -581,7 +593,7 @@ To fix this you will either need to add a package.json or Cargo.toml file at tha
|
|
|
581
593
|
);
|
|
582
594
|
}
|
|
583
595
|
const affectedProjects = options.releaseGroup.projectsRelationship === "independent" ? [projectName] : projects.map((p) => p.name);
|
|
584
|
-
let previousVersionRef = _optionalChain([latestMatchingGitTag, 'optionalAccess',
|
|
596
|
+
let previousVersionRef = _optionalChain([latestMatchingGitTag, 'optionalAccess', _13 => _13.tag]) ? latestMatchingGitTag.tag : await _git.getFirstGitCommit.call(void 0, );
|
|
585
597
|
if (!previousVersionRef) {
|
|
586
598
|
log(
|
|
587
599
|
`Unable to determine previous version ref for the projects ${affectedProjects.join(
|
|
@@ -650,7 +662,7 @@ To fix this you will either need to add a package.json or Cargo.toml file at tha
|
|
|
650
662
|
tree,
|
|
651
663
|
options.projectGraph,
|
|
652
664
|
projects.filter(
|
|
653
|
-
(project2) => _optionalChain([project2, 'optionalAccess',
|
|
665
|
+
(project2) => _optionalChain([project2, 'optionalAccess', _14 => _14.data, 'optionalAccess', _15 => _15.root]) && _optionalChain([project2, 'optionalAccess', _16 => _16.data, 'optionalAccess', _17 => _17.root]) !== _optionalChain([config, 'optionalAccess', _18 => _18.workspaceRoot])
|
|
654
666
|
),
|
|
655
667
|
projectNameToPackageRootMap,
|
|
656
668
|
resolvePackageRoot,
|
|
@@ -694,7 +706,7 @@ To fix this you will either need to add a package.json or Cargo.toml file at tha
|
|
|
694
706
|
});
|
|
695
707
|
} else if (tree.exists(cargoTomlPath)) {
|
|
696
708
|
const cargoToml = _chunk452FQZ3Bjs.parseCargoToml.call(void 0,
|
|
697
|
-
_optionalChain([tree, 'access',
|
|
709
|
+
_optionalChain([tree, 'access', _19 => _19.read, 'call', _20 => _20(cargoTomlPath), 'optionalAccess', _21 => _21.toString, 'call', _22 => _22("utf-8")])
|
|
698
710
|
);
|
|
699
711
|
cargoToml.package ??= {};
|
|
700
712
|
cargoToml.package.version = newVersion;
|
|
@@ -764,14 +776,14 @@ Projects with packageRoot configured: ${Array.from(projectNameToPackageRootMap.k
|
|
|
764
776
|
versionPrefix = "";
|
|
765
777
|
if (currentVersion) {
|
|
766
778
|
const dependencyVersion = typeof dependencyData === "string" ? dependencyData : dependencyData.version;
|
|
767
|
-
const prefixMatch = _optionalChain([dependencyVersion, 'optionalAccess',
|
|
779
|
+
const prefixMatch = _optionalChain([dependencyVersion, 'optionalAccess', _23 => _23.match, 'call', _24 => _24(/^[~^=]/)]);
|
|
768
780
|
if (prefixMatch) {
|
|
769
781
|
versionPrefix = prefixMatch[0];
|
|
770
782
|
} else {
|
|
771
783
|
versionPrefix = "";
|
|
772
784
|
}
|
|
773
785
|
if (versionPrefix === "^") {
|
|
774
|
-
if (typeof dependencyData !== "string" && !_optionalChain([dependencyData, 'access',
|
|
786
|
+
if (typeof dependencyData !== "string" && !_optionalChain([dependencyData, 'access', _25 => _25.version, 'optionalAccess', _26 => _26.startsWith, 'call', _27 => _27("^")])) {
|
|
775
787
|
versionPrefix = "";
|
|
776
788
|
}
|
|
777
789
|
}
|
|
@@ -815,7 +827,7 @@ Projects with packageRoot configured: ${Array.from(projectNameToPackageRootMap.k
|
|
|
815
827
|
versionData
|
|
816
828
|
)) {
|
|
817
829
|
const project = projects.find((proj) => proj.name === projectName);
|
|
818
|
-
if (projectVersionData.newVersion && _optionalChain([project, 'optionalAccess',
|
|
830
|
+
if (projectVersionData.newVersion && _optionalChain([project, 'optionalAccess', _28 => _28.name]) && projectNameToPackageRootMap.get(project.name)) {
|
|
819
831
|
const projectRoot = projectNameToPackageRootMap.get(project.name);
|
|
820
832
|
if (projectRoot && tree2.exists(_devkit.joinPathFragments.call(void 0, projectRoot, "Cargo.toml"))) {
|
|
821
833
|
updatedCargoPackages.push(projectName);
|
|
@@ -858,29 +870,6 @@ Projects with packageRoot configured: ${Array.from(projectNameToPackageRootMap.k
|
|
|
858
870
|
}
|
|
859
871
|
}
|
|
860
872
|
var generator_default = releaseVersionGeneratorFn;
|
|
861
|
-
async function getNpmRegistry() {
|
|
862
|
-
if (process.env.STORM_REGISTRY_NPM) {
|
|
863
|
-
return process.env.STORM_REGISTRY_NPM;
|
|
864
|
-
}
|
|
865
|
-
const registry = await new Promise((resolve, reject) => {
|
|
866
|
-
_child_process.exec.call(void 0, "npm config get registry", (error, stdout, stderr) => {
|
|
867
|
-
if (error) {
|
|
868
|
-
return reject(error);
|
|
869
|
-
}
|
|
870
|
-
if (stderr) {
|
|
871
|
-
return reject(stderr);
|
|
872
|
-
}
|
|
873
|
-
return resolve(stdout.trim());
|
|
874
|
-
});
|
|
875
|
-
});
|
|
876
|
-
return registry ? registry : "https://registry.npmjs.org";
|
|
877
|
-
}
|
|
878
|
-
function getGitHubRegistry() {
|
|
879
|
-
if (process.env.STORM_REGISTRY_GITHUB) {
|
|
880
|
-
return process.env.STORM_REGISTRY_GITHUB;
|
|
881
|
-
}
|
|
882
|
-
return "https://npm.pkg.github.com";
|
|
883
|
-
}
|
|
884
873
|
function hasGitDiff(filePath) {
|
|
885
874
|
try {
|
|
886
875
|
const result = _child_process.execSync.call(void 0, `git diff --name-only "${filePath}"`).toString();
|
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 _chunkGF6O2RXBjs = require('./chunk-GF6O2RXB.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
var _chunkPNWYSTCQjs = require('./chunk-PNWYSTCQ.js');
|
|
@@ -35,6 +35,7 @@ var _chunkEIZKPKJHjs = require('./chunk-EIZKPKJH.js');
|
|
|
35
35
|
require('./chunk-73IC2JQV.js');
|
|
36
36
|
require('./chunk-F6X43VUX.js');
|
|
37
37
|
require('./chunk-LJDV7HFT.js');
|
|
38
|
+
require('./chunk-NTQG45CW.js');
|
|
38
39
|
require('./chunk-452FQZ3B.js');
|
|
39
40
|
require('./chunk-AX3RSZT7.js');
|
|
40
41
|
require('./chunk-PQGJJ2VC.js');
|
|
@@ -55,4 +56,4 @@ require('./chunk-53DNHF7B.js');
|
|
|
55
56
|
|
|
56
57
|
|
|
57
58
|
|
|
58
|
-
exports.LARGE_BUFFER =
|
|
59
|
+
exports.LARGE_BUFFER = _chunkGF6O2RXBjs.LARGE_BUFFER; exports.cargoBuildExecutor = _chunk2JYSOWHXjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkUH5PNSPJjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkDY4PYCP6js.cargoClippyExecutor; exports.cargoDocExecutor = _chunkEIZKPKJHjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkS5DC4QM3js.cargoFormatExecutor; exports.esbuildExecutorFn = _chunk7Y353S7Djs.esbuildExecutorFn; exports.getRegistryVersion = _chunkWRXLSZ6Ijs.getRegistryVersion; exports.sizeLimitExecutorFn = _chunkPNWYSTCQjs.sizeLimitExecutorFn; exports.typiaExecutorFn = _chunkG2ZFORXGjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunk7IF3RQD4js.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-OZFFOIQJ.mjs";
|
|
5
5
|
import {
|
|
6
6
|
sizeLimitExecutorFn
|
|
7
7
|
} from "./chunk-WITQCU2S.mjs";
|
|
@@ -35,6 +35,7 @@ import {
|
|
|
35
35
|
import "./chunk-PIK7KYVE.mjs";
|
|
36
36
|
import "./chunk-KHT5W6AJ.mjs";
|
|
37
37
|
import "./chunk-6LP3KKXE.mjs";
|
|
38
|
+
import "./chunk-5BP7WBYT.mjs";
|
|
38
39
|
import "./chunk-SVIG7SR3.mjs";
|
|
39
40
|
import "./chunk-F66XEAID.mjs";
|
|
40
41
|
import "./chunk-T25RSZNX.mjs";
|
package/dist/generators.js
CHANGED
|
@@ -7,7 +7,7 @@ var _chunkR46H5YPGjs = require('./chunk-R46H5YPG.js');
|
|
|
7
7
|
var _chunk3DQHYRAWjs = require('./chunk-3DQHYRAW.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
var
|
|
10
|
+
var _chunkQEPFDTFDjs = require('./chunk-QEPFDTFD.js');
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
var _chunk7OBL2GKKjs = require('./chunk-7OBL2GKK.js');
|
|
@@ -22,6 +22,7 @@ var _chunkOKSECMVKjs = require('./chunk-OKSECMVK.js');
|
|
|
22
22
|
var _chunkG3LFGXX3js = require('./chunk-G3LFGXX3.js');
|
|
23
23
|
require('./chunk-QKQRWKYX.js');
|
|
24
24
|
require('./chunk-SZWM7COV.js');
|
|
25
|
+
require('./chunk-NTQG45CW.js');
|
|
25
26
|
require('./chunk-452FQZ3B.js');
|
|
26
27
|
require('./chunk-AX3RSZT7.js');
|
|
27
28
|
require('./chunk-VGRHMX4G.js');
|
|
@@ -38,4 +39,4 @@ require('./chunk-53DNHF7B.js');
|
|
|
38
39
|
|
|
39
40
|
|
|
40
41
|
|
|
41
|
-
exports.browserLibraryGeneratorFn = _chunk7OBL2GKKjs.browserLibraryGeneratorFn; exports.configSchemaGeneratorFn = _chunkL7Z66BRKjs.configSchemaGeneratorFn; exports.initGenerator = _chunkOKSECMVKjs.initGenerator; exports.neutralLibraryGeneratorFn = _chunkG3LFGXX3js.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunkR46H5YPGjs.nodeLibraryGeneratorFn; exports.presetGeneratorFn = _chunk3DQHYRAWjs.presetGeneratorFn; exports.releaseVersionGeneratorFn =
|
|
42
|
+
exports.browserLibraryGeneratorFn = _chunk7OBL2GKKjs.browserLibraryGeneratorFn; exports.configSchemaGeneratorFn = _chunkL7Z66BRKjs.configSchemaGeneratorFn; exports.initGenerator = _chunkOKSECMVKjs.initGenerator; exports.neutralLibraryGeneratorFn = _chunkG3LFGXX3js.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunkR46H5YPGjs.nodeLibraryGeneratorFn; exports.presetGeneratorFn = _chunk3DQHYRAWjs.presetGeneratorFn; exports.releaseVersionGeneratorFn = _chunkQEPFDTFDjs.releaseVersionGeneratorFn;
|
package/dist/generators.mjs
CHANGED
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
} from "./chunk-MHMMP3BC.mjs";
|
|
8
8
|
import {
|
|
9
9
|
releaseVersionGeneratorFn
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-BNDXPQJL.mjs";
|
|
11
11
|
import {
|
|
12
12
|
browserLibraryGeneratorFn
|
|
13
13
|
} from "./chunk-PXZIBYEN.mjs";
|
|
@@ -22,6 +22,7 @@ import {
|
|
|
22
22
|
} from "./chunk-5WETPBWF.mjs";
|
|
23
23
|
import "./chunk-LNCNJLSB.mjs";
|
|
24
24
|
import "./chunk-QC5ON3X4.mjs";
|
|
25
|
+
import "./chunk-5BP7WBYT.mjs";
|
|
25
26
|
import "./chunk-SVIG7SR3.mjs";
|
|
26
27
|
import "./chunk-F66XEAID.mjs";
|
|
27
28
|
import "./chunk-V3SVHUFX.mjs";
|
package/dist/index.js
CHANGED
|
@@ -50,7 +50,7 @@ var _chunkUZ63ALZQjs = require('./chunk-UZ63ALZQ.js');
|
|
|
50
50
|
require('./chunk-7VDOGZYO.js');
|
|
51
51
|
|
|
52
52
|
|
|
53
|
-
var
|
|
53
|
+
var _chunkGF6O2RXBjs = require('./chunk-GF6O2RXB.js');
|
|
54
54
|
|
|
55
55
|
|
|
56
56
|
var _chunkPNWYSTCQjs = require('./chunk-PNWYSTCQ.js');
|
|
@@ -109,7 +109,7 @@ var _chunkR46H5YPGjs = require('./chunk-R46H5YPG.js');
|
|
|
109
109
|
var _chunk3DQHYRAWjs = require('./chunk-3DQHYRAW.js');
|
|
110
110
|
|
|
111
111
|
|
|
112
|
-
var
|
|
112
|
+
var _chunkQEPFDTFDjs = require('./chunk-QEPFDTFD.js');
|
|
113
113
|
|
|
114
114
|
|
|
115
115
|
var _chunk7OBL2GKKjs = require('./chunk-7OBL2GKK.js');
|
|
@@ -148,6 +148,7 @@ var _chunkQKQRWKYXjs = require('./chunk-QKQRWKYX.js');
|
|
|
148
148
|
|
|
149
149
|
|
|
150
150
|
var _chunkSZWM7COVjs = require('./chunk-SZWM7COV.js');
|
|
151
|
+
require('./chunk-NTQG45CW.js');
|
|
151
152
|
require('./chunk-452FQZ3B.js');
|
|
152
153
|
|
|
153
154
|
|
|
@@ -283,4 +284,4 @@ var _chunk7CJRMBX3js = require('./chunk-7CJRMBX3.js');
|
|
|
283
284
|
|
|
284
285
|
|
|
285
286
|
|
|
286
|
-
exports.INVALID_CARGO_ARGS = _chunkLJDV7HFTjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER =
|
|
287
|
+
exports.INVALID_CARGO_ARGS = _chunkLJDV7HFTjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkGF6O2RXBjs.LARGE_BUFFER; exports.LOCK_FILES = _chunkXZSS3YABjs.LOCK_FILES; exports.NAMED_INPUTS = _chunkIBTPJDV6js.NAMED_INPUTS; 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 = _chunk73IC2JQVjs.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.RELEASE = _chunkIBTPJDV6js.RELEASE; exports.YARN_LOCK_FILE = _chunkXZSS3YABjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkXZSS3YABjs.YARN_LOCK_PATH; exports.addPackageJsonGitHead = _chunk73IC2JQVjs.addPackageJsonGitHead; exports.addPluginProjectTag = _chunkAX3RSZT7js.addPluginProjectTag; exports.addProjectTag = _chunkAX3RSZT7js.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunk4DLKOUQAjs.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunk7OBL2GKKjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkLJDV7HFTjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk5ZFTWEKBjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunk2JYSOWHXjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkUH5PNSPJjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkDY4PYCP6js.cargoClippyExecutor; exports.cargoCommand = _chunkLJDV7HFTjs.cargoCommand; exports.cargoCommandSync = _chunkLJDV7HFTjs.cargoCommandSync; exports.cargoDocExecutor = _chunkEIZKPKJHjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkS5DC4QM3js.cargoFormatExecutor; exports.cargoMetadata = _chunkLJDV7HFTjs.cargoMetadata; exports.cargoRunCommand = _chunkLJDV7HFTjs.cargoRunCommand; exports.childProcess = _chunkLJDV7HFTjs.childProcess; exports.configSchemaGeneratorFn = _chunkL7Z66BRKjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkQVYCDINGjs.createCliOptions; exports.createProjectTsConfigJson = _chunkQKQRWKYXjs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunk7Y353S7Djs.esbuildExecutorFn; exports.eslintVersion = _chunkSZWM7COVjs.eslintVersion; exports.formatProjectTag = _chunkAX3RSZT7js.formatProjectTag; exports.getLockFileDependencies = _chunkXZSS3YABjs.getLockFileDependencies; exports.getLockFileName = _chunkXZSS3YABjs.getLockFileName; exports.getLockFileNodes = _chunkXZSS3YABjs.getLockFileNodes; exports.getOutputPath = _chunkQKQRWKYXjs.getOutputPath; exports.getPackageInfo = _chunk73IC2JQVjs.getPackageInfo; exports.getProjectConfigFromProjectJsonPath = _chunkJ6F3WHRBjs.getProjectConfigFromProjectJsonPath; exports.getProjectConfigFromProjectRoot = _chunkJ6F3WHRBjs.getProjectConfigFromProjectRoot; exports.getProjectConfiguration = _chunkUZ63ALZQjs.getProjectConfiguration; exports.getProjectConfigurations = _chunkUZ63ALZQjs.getProjectConfigurations; exports.getProjectPlatform = _chunkJ6F3WHRBjs.getProjectPlatform; exports.getProjectRoot = _chunkJ6F3WHRBjs.getProjectRoot; exports.getProjectTag = _chunkAX3RSZT7js.getProjectTag; exports.getRegistryVersion = _chunkWRXLSZ6Ijs.getRegistryVersion; exports.getRoot = _chunkJ6F3WHRBjs.getRoot; exports.getTypiaTransform = _chunk6EMYX25Vjs.getTypiaTransform; exports.hasProjectTag = _chunkAX3RSZT7js.hasProjectTag; exports.initGenerator = _chunkOKSECMVKjs.initGenerator; exports.isEqualProjectTag = _chunkAX3RSZT7js.isEqualProjectTag; exports.isExternal = _chunkLJDV7HFTjs.isExternal; exports.lintStagedVersion = _chunkSZWM7COVjs.lintStagedVersion; exports.lockFileExists = _chunkXZSS3YABjs.lockFileExists; exports.neutralLibraryGeneratorFn = _chunkG3LFGXX3js.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunkR46H5YPGjs.nodeLibraryGeneratorFn; exports.nodeVersion = _chunkSZWM7COVjs.nodeVersion; exports.normalizeOptions = _chunkQKQRWKYXjs.normalizeOptions; exports.nxVersion = _chunkSZWM7COVjs.nxVersion; exports.pnpmUpdate = _chunkF6X43VUXjs.pnpmUpdate; exports.pnpmVersion = _chunkSZWM7COVjs.pnpmVersion; exports.presetGeneratorFn = _chunk3DQHYRAWjs.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkSZWM7COVjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkSZWM7COVjs.prettierPrismaVersion; exports.prettierVersion = _chunkSZWM7COVjs.prettierVersion; exports.releaseVersionGeneratorFn = _chunkQEPFDTFDjs.releaseVersionGeneratorFn; exports.runProcess = _chunkLJDV7HFTjs.runProcess; exports.semanticReleaseVersion = _chunkSZWM7COVjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunkAX3RSZT7js.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunkPNWYSTCQjs.sizeLimitExecutorFn; exports.swcCliVersion = _chunkSZWM7COVjs.swcCliVersion; exports.swcCoreVersion = _chunkSZWM7COVjs.swcCoreVersion; exports.swcHelpersVersion = _chunkSZWM7COVjs.swcHelpersVersion; exports.swcNodeVersion = _chunkSZWM7COVjs.swcNodeVersion; exports.tsLibVersion = _chunkSZWM7COVjs.tsLibVersion; exports.tsupVersion = _chunkSZWM7COVjs.tsupVersion; exports.typeScriptLibraryGeneratorFn = _chunkQKQRWKYXjs.typeScriptLibraryGeneratorFn; exports.typesNodeVersion = _chunkSZWM7COVjs.typesNodeVersion; exports.typescriptBuildExecutorSchema = _chunkCLMAB7TAjs.typescript_build_executor_untyped_default; exports.typescriptLibraryGeneratorSchema = _chunk2AVWFUXPjs.typescript_library_generator_untyped_default; exports.typescriptVersion = _chunkSZWM7COVjs.typescriptVersion; exports.typiaExecutorFn = _chunkG2ZFORXGjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunk7IF3RQD4js.unbuildExecutorFn; exports.verdaccioVersion = _chunkSZWM7COVjs.verdaccioVersion; exports.withNamedInputs = _chunkIBTPJDV6js.withNamedInputs; exports.withRunExecutor = _chunkPQGJJ2VCjs.withRunExecutor; exports.withRunGenerator = _chunkVGRHMX4Gjs.withRunGenerator;
|
package/dist/index.mjs
CHANGED
|
@@ -50,7 +50,7 @@ import {
|
|
|
50
50
|
import "./chunk-BLX5SLPC.mjs";
|
|
51
51
|
import {
|
|
52
52
|
LARGE_BUFFER
|
|
53
|
-
} from "./chunk-
|
|
53
|
+
} from "./chunk-OZFFOIQJ.mjs";
|
|
54
54
|
import {
|
|
55
55
|
sizeLimitExecutorFn
|
|
56
56
|
} from "./chunk-WITQCU2S.mjs";
|
|
@@ -109,7 +109,7 @@ import {
|
|
|
109
109
|
} from "./chunk-MHMMP3BC.mjs";
|
|
110
110
|
import {
|
|
111
111
|
releaseVersionGeneratorFn
|
|
112
|
-
} from "./chunk-
|
|
112
|
+
} from "./chunk-BNDXPQJL.mjs";
|
|
113
113
|
import {
|
|
114
114
|
browserLibraryGeneratorFn
|
|
115
115
|
} from "./chunk-PXZIBYEN.mjs";
|
|
@@ -148,6 +148,7 @@ import {
|
|
|
148
148
|
typescriptVersion,
|
|
149
149
|
verdaccioVersion
|
|
150
150
|
} from "./chunk-QC5ON3X4.mjs";
|
|
151
|
+
import "./chunk-5BP7WBYT.mjs";
|
|
151
152
|
import "./chunk-SVIG7SR3.mjs";
|
|
152
153
|
import {
|
|
153
154
|
ProjectTagConstants,
|
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkGF6O2RXBjs = require('../../../chunk-GF6O2RXB.js');
|
|
5
5
|
require('../../../chunk-73IC2JQV.js');
|
|
6
6
|
require('../../../chunk-F6X43VUX.js');
|
|
7
|
+
require('../../../chunk-NTQG45CW.js');
|
|
7
8
|
require('../../../chunk-452FQZ3B.js');
|
|
8
9
|
require('../../../chunk-AX3RSZT7.js');
|
|
10
|
+
require('../../../chunk-OSMA3OJG.js');
|
|
9
11
|
require('../../../chunk-2CDSXWFA.js');
|
|
12
|
+
require('../../../chunk-HNFKVXBV.js');
|
|
10
13
|
require('../../../chunk-53DNHF7B.js');
|
|
11
14
|
|
|
12
15
|
|
|
13
16
|
|
|
14
|
-
exports.LARGE_BUFFER =
|
|
17
|
+
exports.LARGE_BUFFER = _chunkGF6O2RXBjs.LARGE_BUFFER; exports.default = _chunkGF6O2RXBjs.npmPublishExecutorFn;
|
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
import {
|
|
2
2
|
LARGE_BUFFER,
|
|
3
3
|
npmPublishExecutorFn
|
|
4
|
-
} from "../../../chunk-
|
|
4
|
+
} from "../../../chunk-OZFFOIQJ.mjs";
|
|
5
5
|
import "../../../chunk-PIK7KYVE.mjs";
|
|
6
6
|
import "../../../chunk-KHT5W6AJ.mjs";
|
|
7
|
+
import "../../../chunk-5BP7WBYT.mjs";
|
|
7
8
|
import "../../../chunk-SVIG7SR3.mjs";
|
|
8
9
|
import "../../../chunk-F66XEAID.mjs";
|
|
10
|
+
import "../../../chunk-HJPVYUW7.mjs";
|
|
9
11
|
import "../../../chunk-V44DYGWX.mjs";
|
|
12
|
+
import "../../../chunk-M5Z57CUO.mjs";
|
|
10
13
|
import "../../../chunk-U7JFVMCK.mjs";
|
|
11
14
|
import "../../../chunk-VHSLNH66.mjs";
|
|
12
15
|
export {
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkQEPFDTFDjs = require('../../../chunk-QEPFDTFD.js');
|
|
5
|
+
require('../../../chunk-NTQG45CW.js');
|
|
5
6
|
require('../../../chunk-452FQZ3B.js');
|
|
6
7
|
require('../../../chunk-OSMA3OJG.js');
|
|
7
8
|
require('../../../chunk-2CDSXWFA.js');
|
|
@@ -10,4 +11,4 @@ require('../../../chunk-53DNHF7B.js');
|
|
|
10
11
|
|
|
11
12
|
|
|
12
13
|
|
|
13
|
-
exports.default =
|
|
14
|
+
exports.default = _chunkQEPFDTFDjs.generator_default; exports.releaseVersionGeneratorFn = _chunkQEPFDTFDjs.releaseVersionGeneratorFn;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
generator_default,
|
|
3
3
|
releaseVersionGeneratorFn
|
|
4
|
-
} from "../../../chunk-
|
|
4
|
+
} from "../../../chunk-BNDXPQJL.mjs";
|
|
5
|
+
import "../../../chunk-5BP7WBYT.mjs";
|
|
5
6
|
import "../../../chunk-SVIG7SR3.mjs";
|
|
6
7
|
import "../../../chunk-HJPVYUW7.mjs";
|
|
7
8
|
import "../../../chunk-V44DYGWX.mjs";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/workspace-tools",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.286.0",
|
|
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",
|
|
@@ -209,6 +209,7 @@
|
|
|
209
209
|
"@size-limit/esbuild-why": "11.1.4",
|
|
210
210
|
"@size-limit/file": "11.1.4",
|
|
211
211
|
"@storm-software/esbuild": "^0.49.0",
|
|
212
|
+
"@storm-software/npm-tools": "^0.1.0",
|
|
212
213
|
"@storm-software/prettier": "^0.54.0",
|
|
213
214
|
"@storm-software/unbuild": "^0.53.0",
|
|
214
215
|
"fs-extra": "11.2.0",
|
|
@@ -238,5 +239,5 @@
|
|
|
238
239
|
"publishConfig": { "access": "public" },
|
|
239
240
|
"executors": "./executors.json",
|
|
240
241
|
"generators": "./generators.json",
|
|
241
|
-
"gitHead": "
|
|
242
|
+
"gitHead": "2dd4f76e93fcf31e211f6eb134d4c257ad62b7ec"
|
|
242
243
|
}
|