@storm-software/projen 0.21.169 → 0.21.171
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/README.md +1 -1
- package/dist/chunk-245W3USJ.js +6 -0
- package/dist/{chunk-A24P3L2K.mjs → chunk-D5SAU6HF.mjs} +1 -1
- package/dist/{chunk-RC5DQK5S.mjs → chunk-DTCWZTHY.mjs} +2 -2
- package/dist/{chunk-47AHG2CF.js → chunk-H4Q35YMB.js} +205 -204
- package/dist/{chunk-J7CQLAW3.js → chunk-IFTRUSRD.js} +3 -3
- package/dist/{chunk-7NCOB2OS.js → chunk-LORECAU5.js} +2 -2
- package/dist/{chunk-2UGJBMPN.mjs → chunk-ND4P6SI5.mjs} +1 -1
- package/dist/{chunk-DIMP63EN.mjs → chunk-Q7YIVOAF.mjs} +1 -1
- package/dist/{chunk-XXCCWLGL.mjs → chunk-S2UM7MXT.mjs} +8 -7
- package/dist/{chunk-NG224TJJ.js → chunk-YIOJM56V.js} +2 -2
- package/dist/generators.js +5 -5
- package/dist/generators.mjs +4 -4
- package/dist/index.js +10 -10
- package/dist/index.mjs +5 -5
- package/dist/src/components/index.js +3 -3
- package/dist/src/components/index.mjs +2 -2
- package/dist/src/components/nx-workspace.js +4 -4
- package/dist/src/components/nx-workspace.mjs +2 -2
- package/dist/src/generators/init/generator.js +4 -4
- package/dist/src/generators/init/generator.mjs +3 -3
- package/dist/tsup.config.js +2 -2
- package/dist/tsup.config.mjs +1 -1
- package/package.json +3 -3
- package/dist/chunk-W45SBDPH.js +0 -6
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkLORECAU5js = require('./chunk-LORECAU5.js');
|
|
5
5
|
|
|
6
6
|
// src/components/index.ts
|
|
7
|
-
var require_components =
|
|
7
|
+
var require_components = _chunkLORECAU5js.__commonJS.call(void 0, {
|
|
8
8
|
"src/components/index.ts"() {
|
|
9
|
-
|
|
9
|
+
_chunkLORECAU5js.init_cjs_shims.call(void 0, );
|
|
10
10
|
}
|
|
11
11
|
});
|
|
12
12
|
|
|
@@ -32,9 +32,9 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
32
32
|
mod
|
|
33
33
|
));
|
|
34
34
|
|
|
35
|
-
// ../../node_modules/.pnpm/tsup@8.4.0_patch_hash=
|
|
35
|
+
// ../../node_modules/.pnpm/tsup@8.4.0_patch_hash=751a554d775c3572381af4e7e5fa22eeda6dd6856012fb1cf521d6806eb2dc74__8549b0106dd40384320fcc6895606f0f/node_modules/tsup/assets/cjs_shims.js
|
|
36
36
|
var init_cjs_shims = __esm({
|
|
37
|
-
"../../node_modules/.pnpm/tsup@8.4.0_patch_hash=
|
|
37
|
+
"../../node_modules/.pnpm/tsup@8.4.0_patch_hash=751a554d775c3572381af4e7e5fa22eeda6dd6856012fb1cf521d6806eb2dc74__8549b0106dd40384320fcc6895606f0f/node_modules/tsup/assets/cjs_shims.js"() {
|
|
38
38
|
}
|
|
39
39
|
});
|
|
40
40
|
|
|
@@ -3,11 +3,11 @@ import {
|
|
|
3
3
|
isAbsolute,
|
|
4
4
|
joinPaths,
|
|
5
5
|
relative
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-D5SAU6HF.mjs";
|
|
7
7
|
import {
|
|
8
8
|
__dirname,
|
|
9
9
|
init_esm_shims
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-DTCWZTHY.mjs";
|
|
11
11
|
|
|
12
12
|
// src/generators/init/generator.ts
|
|
13
13
|
init_esm_shims();
|
|
@@ -2245,7 +2245,9 @@ var buildCargoCommand = (baseCommand, options, context) => {
|
|
|
2245
2245
|
args.push(`+${options.toolchain}`);
|
|
2246
2246
|
}
|
|
2247
2247
|
args.push(baseCommand);
|
|
2248
|
-
for (const [key, value] of Object.entries(options)
|
|
2248
|
+
for (const [key, value] of Object.entries(options).filter(
|
|
2249
|
+
([key2]) => key2 && key2 !== "_"
|
|
2250
|
+
)) {
|
|
2249
2251
|
if (key === "toolchain" || key === "release" || INVALID_CARGO_ARGS.includes(key)) {
|
|
2250
2252
|
continue;
|
|
2251
2253
|
}
|
|
@@ -2255,7 +2257,7 @@ var buildCargoCommand = (baseCommand, options, context) => {
|
|
|
2255
2257
|
}
|
|
2256
2258
|
} else if (Array.isArray(value)) {
|
|
2257
2259
|
for (const item of value) {
|
|
2258
|
-
args.push(`--${key}`, item);
|
|
2260
|
+
args.push(`--${key}`, String(item));
|
|
2259
2261
|
}
|
|
2260
2262
|
} else {
|
|
2261
2263
|
args.push(`--${key}`, String(value));
|
|
@@ -2304,7 +2306,7 @@ function cargoCommandSync(args = "", options) {
|
|
|
2304
2306
|
};
|
|
2305
2307
|
} catch (e) {
|
|
2306
2308
|
return {
|
|
2307
|
-
output: e,
|
|
2309
|
+
output: e.message,
|
|
2308
2310
|
success: false
|
|
2309
2311
|
};
|
|
2310
2312
|
}
|
|
@@ -4953,8 +4955,7 @@ var base_executor_untyped_default = defineUntypedSchema({
|
|
|
4953
4955
|
type: "string",
|
|
4954
4956
|
format: "path",
|
|
4955
4957
|
description: "The output path for the build"
|
|
4956
|
-
}
|
|
4957
|
-
$default: "dist/{projectRoot}"
|
|
4958
|
+
}
|
|
4958
4959
|
}
|
|
4959
4960
|
});
|
|
4960
4961
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
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
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkLORECAU5js = require('./chunk-LORECAU5.js');
|
|
4
4
|
|
|
5
5
|
// ../config-tools/src/utilities/correct-paths.ts
|
|
6
|
-
|
|
6
|
+
_chunkLORECAU5js.init_cjs_shims.call(void 0, );
|
|
7
7
|
var _DRIVE_LETTER_START_RE = /^[A-Za-z]:\//;
|
|
8
8
|
function normalizeWindowsPath(input = "") {
|
|
9
9
|
if (!input) {
|
package/dist/generators.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-245W3USJ.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
5
|
-
require('./chunk-
|
|
6
|
-
require('./chunk-
|
|
4
|
+
var _chunkH4Q35YMBjs = require('./chunk-H4Q35YMB.js');
|
|
5
|
+
require('./chunk-YIOJM56V.js');
|
|
6
|
+
require('./chunk-LORECAU5.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.initGeneratorFn =
|
|
9
|
+
exports.initGeneratorFn = _chunkH4Q35YMBjs.initGeneratorFn;
|
package/dist/generators.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import "./chunk-
|
|
1
|
+
import "./chunk-Q7YIVOAF.mjs";
|
|
2
2
|
import {
|
|
3
3
|
initGeneratorFn
|
|
4
|
-
} from "./chunk-
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
4
|
+
} from "./chunk-S2UM7MXT.mjs";
|
|
5
|
+
import "./chunk-D5SAU6HF.mjs";
|
|
6
|
+
import "./chunk-DTCWZTHY.mjs";
|
|
7
7
|
export {
|
|
8
8
|
initGeneratorFn
|
|
9
9
|
};
|
package/dist/index.js
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-245W3USJ.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkIFTRUSRDjs = require('./chunk-IFTRUSRD.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
8
|
-
require('./chunk-
|
|
7
|
+
var _chunkH4Q35YMBjs = require('./chunk-H4Q35YMB.js');
|
|
8
|
+
require('./chunk-YIOJM56V.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
var
|
|
14
|
+
var _chunkLORECAU5js = require('./chunk-LORECAU5.js');
|
|
15
15
|
|
|
16
16
|
// index.ts
|
|
17
17
|
var index_exports = {};
|
|
18
|
-
|
|
19
|
-
initGeneratorFn: () =>
|
|
18
|
+
_chunkLORECAU5js.__export.call(void 0, index_exports, {
|
|
19
|
+
initGeneratorFn: () => _chunkH4Q35YMBjs.initGeneratorFn
|
|
20
20
|
});
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
_chunkLORECAU5js.init_cjs_shims.call(void 0, );
|
|
22
|
+
_chunkLORECAU5js.__reExport.call(void 0, index_exports, _chunkLORECAU5js.__toESM.call(void 0, _chunkIFTRUSRDjs.require_components.call(void 0, )));
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
exports.initGeneratorFn =
|
|
25
|
+
exports.initGeneratorFn = _chunkH4Q35YMBjs.initGeneratorFn;
|
package/dist/index.mjs
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import "./chunk-
|
|
1
|
+
import "./chunk-Q7YIVOAF.mjs";
|
|
2
2
|
import {
|
|
3
3
|
require_components
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-ND4P6SI5.mjs";
|
|
5
5
|
import {
|
|
6
6
|
initGeneratorFn
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import "./chunk-
|
|
7
|
+
} from "./chunk-S2UM7MXT.mjs";
|
|
8
|
+
import "./chunk-D5SAU6HF.mjs";
|
|
9
9
|
import {
|
|
10
10
|
__export,
|
|
11
11
|
__reExport,
|
|
12
12
|
__toESM,
|
|
13
13
|
init_esm_shims
|
|
14
|
-
} from "./chunk-
|
|
14
|
+
} from "./chunk-DTCWZTHY.mjs";
|
|
15
15
|
|
|
16
16
|
// index.ts
|
|
17
17
|
var index_exports = {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../chunk-
|
|
5
|
-
exports. default =
|
|
3
|
+
var _chunkIFTRUSRDjs = require('../../chunk-IFTRUSRD.js');
|
|
4
|
+
require('../../chunk-LORECAU5.js');
|
|
5
|
+
exports. default = _chunkIFTRUSRDjs.require_components.call(void 0, );
|
|
@@ -1,12 +1,12 @@
|
|
|
1
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; } var _class;
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkYIOJM56Vjs = require('../../chunk-YIOJM56V.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunkLORECAU5js = require('../../chunk-LORECAU5.js');
|
|
7
7
|
|
|
8
8
|
// src/components/nx-workspace.ts
|
|
9
|
-
|
|
9
|
+
_chunkLORECAU5js.init_cjs_shims.call(void 0, );
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
@@ -551,7 +551,7 @@ var StormNxWorkspace = (_class = class extends _nxworkspace.NxWorkspace {
|
|
|
551
551
|
let StormWorkspaceConfig;
|
|
552
552
|
if (project.root.outdir) {
|
|
553
553
|
const StormWorkspaceConfigJson = _fs.readFileSync.call(void 0,
|
|
554
|
-
|
|
554
|
+
_chunkYIOJM56Vjs.joinPaths.call(void 0, project.root.outdir, "storm-workspace.json"),
|
|
555
555
|
"utf8"
|
|
556
556
|
);
|
|
557
557
|
StormWorkspaceConfig = JSON.parse(StormWorkspaceConfigJson);
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
5
|
-
require('../../../chunk-
|
|
6
|
-
require('../../../chunk-
|
|
4
|
+
var _chunkH4Q35YMBjs = require('../../../chunk-H4Q35YMB.js');
|
|
5
|
+
require('../../../chunk-YIOJM56V.js');
|
|
6
|
+
require('../../../chunk-LORECAU5.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.default =
|
|
10
|
+
exports.default = _chunkH4Q35YMBjs.generator_default; exports.initGeneratorFn = _chunkH4Q35YMBjs.initGeneratorFn;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
generator_default,
|
|
3
3
|
initGeneratorFn
|
|
4
|
-
} from "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
4
|
+
} from "../../../chunk-S2UM7MXT.mjs";
|
|
5
|
+
import "../../../chunk-D5SAU6HF.mjs";
|
|
6
|
+
import "../../../chunk-DTCWZTHY.mjs";
|
|
7
7
|
export {
|
|
8
8
|
generator_default as default,
|
|
9
9
|
initGeneratorFn
|
package/dist/tsup.config.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkLORECAU5js = require('./chunk-LORECAU5.js');
|
|
4
4
|
|
|
5
5
|
// tsup.config.ts
|
|
6
|
-
|
|
6
|
+
_chunkLORECAU5js.init_cjs_shims.call(void 0, );
|
|
7
7
|
var _tsup = require('tsup');
|
|
8
8
|
var tsup_config_default = _tsup.defineConfig.call(void 0, [
|
|
9
9
|
{
|
package/dist/tsup.config.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/projen",
|
|
3
|
-
"version": "0.21.
|
|
3
|
+
"version": "0.21.171",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"description": "Tools for managing Projen configuration automation within a Nx workspace.",
|
|
6
6
|
"repository": {
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
"@nx/devkit": "22.6.0",
|
|
118
118
|
"@storm-software/config": "1.137.31",
|
|
119
119
|
"@storm-software/config-tools": "1.189.77",
|
|
120
|
-
"@storm-software/workspace-tools": "1.295.
|
|
120
|
+
"@storm-software/workspace-tools": "1.295.55",
|
|
121
121
|
"projen": "^0.91.6",
|
|
122
122
|
"tsup": "8.4.0",
|
|
123
123
|
"untyped": "1.5.2"
|
|
@@ -142,5 +142,5 @@
|
|
|
142
142
|
"publishConfig": { "access": "public" },
|
|
143
143
|
"executors": "./executors.json",
|
|
144
144
|
"generators": "./generators.json",
|
|
145
|
-
"gitHead": "
|
|
145
|
+
"gitHead": "53d2ed234e902be71b97a3f927d2613f1a15731f"
|
|
146
146
|
}
|