@storm-software/projen 0.21.166 → 0.21.167
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 +12 -0
- package/README.md +1 -1
- package/dist/{chunk-3CG7E5BE.js → chunk-GEDAZQZ4.js} +13 -6
- package/dist/{chunk-AU4H2IXY.mjs → chunk-QULFGYFM.mjs} +13 -6
- package/dist/generators.js +2 -2
- package/dist/generators.mjs +1 -1
- package/dist/index.js +3 -3
- package/dist/index.mjs +1 -1
- package/dist/src/generators/init/generator.js +2 -2
- package/dist/src/generators/init/generator.mjs +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Projen
|
|
4
4
|
|
|
5
|
+
## [0.21.166](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.166) (04/10/2026)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Update workspace packages' dependencies ([c86e980b0](https://github.com/storm-software/storm-ops/commit/c86e980b0))
|
|
10
|
+
|
|
11
|
+
### Updated Dependencies
|
|
12
|
+
|
|
13
|
+
- Updated **workspace-tools** to **v1.295.51**
|
|
14
|
+
- Updated **config-tools** to **v1.189.75**
|
|
15
|
+
- Updated **config** to **v1.137.29**
|
|
16
|
+
|
|
5
17
|
## [0.21.165](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.165) (04/08/2026)
|
|
6
18
|
|
|
7
19
|
### Miscellaneous
|
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
27
27
|
|
|
28
28
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
29
29
|
|
|
30
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
31
31
|
|
|
32
32
|
<!-- prettier-ignore-start -->
|
|
33
33
|
<!-- markdownlint-disable -->
|
|
@@ -3276,7 +3276,7 @@ async function napiExecutor(options, context, config) {
|
|
|
3276
3276
|
const metadata = cargoMetadata();
|
|
3277
3277
|
normalizedOptions.targetDir = options.targetDir || _optionalChain([metadata, 'optionalAccess', _154 => _154.target_directory]) || _chunkNG224TJJjs.joinPaths.call(void 0, config.workspaceRoot, "dist", "target");
|
|
3278
3278
|
normalizedOptions.outputDir = options.outputPath;
|
|
3279
|
-
normalizedOptions.packageJsonPath
|
|
3279
|
+
normalizedOptions.packageJsonPath ??= packageJson;
|
|
3280
3280
|
if (options.cwd) {
|
|
3281
3281
|
normalizedOptions.cwd = _chunkNG224TJJjs.correctPaths.call(void 0, options.cwd);
|
|
3282
3282
|
} else {
|
|
@@ -3294,11 +3294,8 @@ async function napiExecutor(options, context, config) {
|
|
|
3294
3294
|
);
|
|
3295
3295
|
}
|
|
3296
3296
|
if (normalizedOptions.packageJsonPath) {
|
|
3297
|
-
normalizedOptions.packageJsonPath = _chunkNG224TJJjs.
|
|
3298
|
-
|
|
3299
|
-
_chunkNG224TJJjs.correctPaths.call(void 0,
|
|
3300
|
-
_chunkNG224TJJjs.isAbsolute.call(void 0, normalizedOptions.packageJsonPath) ? normalizedOptions.packageJsonPath : _chunkNG224TJJjs.joinPaths.call(void 0, config.workspaceRoot, normalizedOptions.packageJsonPath)
|
|
3301
|
-
)
|
|
3297
|
+
normalizedOptions.packageJsonPath = _chunkNG224TJJjs.correctPaths.call(void 0,
|
|
3298
|
+
_chunkNG224TJJjs.isAbsolute.call(void 0, normalizedOptions.packageJsonPath) ? normalizedOptions.packageJsonPath : _chunkNG224TJJjs.joinPaths.call(void 0, config.workspaceRoot, normalizedOptions.packageJsonPath)
|
|
3302
3299
|
);
|
|
3303
3300
|
}
|
|
3304
3301
|
if (normalizedOptions.configPath) {
|
|
@@ -3321,6 +3318,16 @@ async function napiExecutor(options, context, config) {
|
|
|
3321
3318
|
if (process.env.VERCEL) {
|
|
3322
3319
|
return { success: true };
|
|
3323
3320
|
}
|
|
3321
|
+
writeDebug(
|
|
3322
|
+
`Normalized Napi Options:
|
|
3323
|
+
packageJsonPath: ${normalizedOptions.packageJsonPath}
|
|
3324
|
+
outputDir: ${normalizedOptions.outputDir}
|
|
3325
|
+
targetDir: ${normalizedOptions.targetDir}
|
|
3326
|
+
manifestPath: ${normalizedOptions.manifestPath}
|
|
3327
|
+
configPath: ${normalizedOptions.configPath}
|
|
3328
|
+
cwd: ${normalizedOptions.cwd}`,
|
|
3329
|
+
config
|
|
3330
|
+
);
|
|
3324
3331
|
const { task } = await napi.build(normalizedOptions);
|
|
3325
3332
|
return { success: true, terminalOutput: await task };
|
|
3326
3333
|
}
|
|
@@ -3277,7 +3277,7 @@ async function napiExecutor(options, context, config) {
|
|
|
3277
3277
|
const metadata = cargoMetadata();
|
|
3278
3278
|
normalizedOptions.targetDir = options.targetDir || metadata?.target_directory || joinPaths(config.workspaceRoot, "dist", "target");
|
|
3279
3279
|
normalizedOptions.outputDir = options.outputPath;
|
|
3280
|
-
normalizedOptions.packageJsonPath
|
|
3280
|
+
normalizedOptions.packageJsonPath ??= packageJson;
|
|
3281
3281
|
if (options.cwd) {
|
|
3282
3282
|
normalizedOptions.cwd = correctPaths(options.cwd);
|
|
3283
3283
|
} else {
|
|
@@ -3295,11 +3295,8 @@ async function napiExecutor(options, context, config) {
|
|
|
3295
3295
|
);
|
|
3296
3296
|
}
|
|
3297
3297
|
if (normalizedOptions.packageJsonPath) {
|
|
3298
|
-
normalizedOptions.packageJsonPath =
|
|
3299
|
-
|
|
3300
|
-
correctPaths(
|
|
3301
|
-
isAbsolute(normalizedOptions.packageJsonPath) ? normalizedOptions.packageJsonPath : joinPaths(config.workspaceRoot, normalizedOptions.packageJsonPath)
|
|
3302
|
-
)
|
|
3298
|
+
normalizedOptions.packageJsonPath = correctPaths(
|
|
3299
|
+
isAbsolute(normalizedOptions.packageJsonPath) ? normalizedOptions.packageJsonPath : joinPaths(config.workspaceRoot, normalizedOptions.packageJsonPath)
|
|
3303
3300
|
);
|
|
3304
3301
|
}
|
|
3305
3302
|
if (normalizedOptions.configPath) {
|
|
@@ -3322,6 +3319,16 @@ async function napiExecutor(options, context, config) {
|
|
|
3322
3319
|
if (process.env.VERCEL) {
|
|
3323
3320
|
return { success: true };
|
|
3324
3321
|
}
|
|
3322
|
+
writeDebug(
|
|
3323
|
+
`Normalized Napi Options:
|
|
3324
|
+
packageJsonPath: ${normalizedOptions.packageJsonPath}
|
|
3325
|
+
outputDir: ${normalizedOptions.outputDir}
|
|
3326
|
+
targetDir: ${normalizedOptions.targetDir}
|
|
3327
|
+
manifestPath: ${normalizedOptions.manifestPath}
|
|
3328
|
+
configPath: ${normalizedOptions.configPath}
|
|
3329
|
+
cwd: ${normalizedOptions.cwd}`,
|
|
3330
|
+
config
|
|
3331
|
+
);
|
|
3325
3332
|
const { task } = await napi.build(normalizedOptions);
|
|
3326
3333
|
return { success: true, terminalOutput: await task };
|
|
3327
3334
|
}
|
package/dist/generators.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-W45SBDPH.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkGEDAZQZ4js = require('./chunk-GEDAZQZ4.js');
|
|
5
5
|
require('./chunk-NG224TJJ.js');
|
|
6
6
|
require('./chunk-7NCOB2OS.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.initGeneratorFn =
|
|
9
|
+
exports.initGeneratorFn = _chunkGEDAZQZ4js.initGeneratorFn;
|
package/dist/generators.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
var _chunkJ7CQLAW3js = require('./chunk-J7CQLAW3.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkGEDAZQZ4js = require('./chunk-GEDAZQZ4.js');
|
|
8
8
|
require('./chunk-NG224TJJ.js');
|
|
9
9
|
|
|
10
10
|
|
|
@@ -16,10 +16,10 @@ var _chunk7NCOB2OSjs = require('./chunk-7NCOB2OS.js');
|
|
|
16
16
|
// index.ts
|
|
17
17
|
var index_exports = {};
|
|
18
18
|
_chunk7NCOB2OSjs.__export.call(void 0, index_exports, {
|
|
19
|
-
initGeneratorFn: () =>
|
|
19
|
+
initGeneratorFn: () => _chunkGEDAZQZ4js.initGeneratorFn
|
|
20
20
|
});
|
|
21
21
|
_chunk7NCOB2OSjs.init_cjs_shims.call(void 0, );
|
|
22
22
|
_chunk7NCOB2OSjs.__reExport.call(void 0, index_exports, _chunk7NCOB2OSjs.__toESM.call(void 0, _chunkJ7CQLAW3js.require_components.call(void 0, )));
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
exports.initGeneratorFn =
|
|
25
|
+
exports.initGeneratorFn = _chunkGEDAZQZ4js.initGeneratorFn;
|
package/dist/index.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkGEDAZQZ4js = require('../../../chunk-GEDAZQZ4.js');
|
|
5
5
|
require('../../../chunk-NG224TJJ.js');
|
|
6
6
|
require('../../../chunk-7NCOB2OS.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.default =
|
|
10
|
+
exports.default = _chunkGEDAZQZ4js.generator_default; exports.initGeneratorFn = _chunkGEDAZQZ4js.initGeneratorFn;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/projen",
|
|
3
|
-
"version": "0.21.
|
|
3
|
+
"version": "0.21.167",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"description": "Tools for managing Projen configuration automation within a Nx workspace.",
|
|
6
6
|
"repository": {
|
|
@@ -115,9 +115,9 @@
|
|
|
115
115
|
],
|
|
116
116
|
"peerDependencies": {
|
|
117
117
|
"@nx/devkit": "22.6.0",
|
|
118
|
-
"@storm-software/config": "1.137.
|
|
119
|
-
"@storm-software/config-tools": "1.189.
|
|
120
|
-
"@storm-software/workspace-tools": "1.295.
|
|
118
|
+
"@storm-software/config": "1.137.29",
|
|
119
|
+
"@storm-software/config-tools": "1.189.75",
|
|
120
|
+
"@storm-software/workspace-tools": "1.295.51",
|
|
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": "d851b36f18757912e8a1a54176ebe4a4e7a6eed2"
|
|
146
146
|
}
|