@storm-software/projen 0.20.13 → 0.21.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 +7 -0
- package/README.md +2 -1
- package/dist/{chunk-ULAURI32.mjs → chunk-53GMPRDU.mjs} +19 -5
- package/dist/{chunk-4HCLY4LI.js → chunk-DG3RQNES.js} +19 -5
- 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 +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Projen
|
|
4
4
|
|
|
5
|
+
## [0.20.13](https://github.com/storm-software/storm-ops/releases/tag/projen%400.20.13) (2025-10-08)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Update workspace package links
|
|
10
|
+
([ad9d018ff](https://github.com/storm-software/storm-ops/commit/ad9d018ff))
|
|
11
|
+
|
|
5
12
|
## [0.20.12](https://github.com/storm-software/storm-ops/releases/tag/projen%400.20.12) (2025-10-05)
|
|
6
13
|
|
|
7
14
|
### Miscellaneous
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
|
@@ -40,6 +40,7 @@ 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
|
+
|
|
43
44
|
## Table of Contents
|
|
44
45
|
|
|
45
46
|
- [Storm Projen Tools](#storm-projen-tools)
|
|
@@ -2983,14 +2983,28 @@ async function generatePackageJson(context) {
|
|
|
2983
2983
|
|
|
2984
2984
|
// ../esbuild/src/tsup.ts
|
|
2985
2985
|
init_esm_shims();
|
|
2986
|
+
|
|
2987
|
+
// ../tsup/src/index.ts
|
|
2988
|
+
init_esm_shims();
|
|
2986
2989
|
import { build as tsup } from "tsup";
|
|
2990
|
+
async function build(options) {
|
|
2991
|
+
writeDebug(
|
|
2992
|
+
` \u{1F680} Running ${options.name || "tsup"} build`,
|
|
2993
|
+
options.workspaceConfig
|
|
2994
|
+
);
|
|
2995
|
+
const stopwatch = getStopwatch(`${options.name || "tsup"} build`);
|
|
2996
|
+
await tsup(options);
|
|
2997
|
+
stopwatch();
|
|
2998
|
+
}
|
|
2999
|
+
|
|
3000
|
+
// ../esbuild/src/tsup.ts
|
|
2987
3001
|
async function executeTsup(context) {
|
|
2988
3002
|
writeDebug(
|
|
2989
3003
|
` \u{1F680} Running ${context.options.name} build`,
|
|
2990
3004
|
context.workspaceConfig
|
|
2991
3005
|
);
|
|
2992
3006
|
const stopwatch = getStopwatch(`${context.options.name} build`);
|
|
2993
|
-
await
|
|
3007
|
+
await build({
|
|
2994
3008
|
...context.options,
|
|
2995
3009
|
outDir: context.options.distDir ? joinPaths(context.outputPath, context.options.distDir) : context.outputPath,
|
|
2996
3010
|
workspaceConfig: context.workspaceConfig
|
|
@@ -3034,7 +3048,7 @@ async function cleanOutputPath(context) {
|
|
|
3034
3048
|
}
|
|
3035
3049
|
return context;
|
|
3036
3050
|
}
|
|
3037
|
-
async function
|
|
3051
|
+
async function build2(options) {
|
|
3038
3052
|
writeDebug(` \u26A1 Executing Storm ESBuild pipeline`);
|
|
3039
3053
|
const stopwatch = getStopwatch("ESBuild pipeline");
|
|
3040
3054
|
try {
|
|
@@ -3070,7 +3084,7 @@ async function esbuildExecutorFn(options, context, config5) {
|
|
|
3070
3084
|
"The Build process failed because the context is not valid. Please run this command from a workspace."
|
|
3071
3085
|
);
|
|
3072
3086
|
}
|
|
3073
|
-
await
|
|
3087
|
+
await build2({
|
|
3074
3088
|
...options,
|
|
3075
3089
|
projectRoot: (
|
|
3076
3090
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
@@ -3520,7 +3534,7 @@ async function cleanOutputPath2(options) {
|
|
|
3520
3534
|
}
|
|
3521
3535
|
return options;
|
|
3522
3536
|
}
|
|
3523
|
-
async function
|
|
3537
|
+
async function build3(options) {
|
|
3524
3538
|
writeDebug(` \u26A1 Executing Storm TSDown pipeline`);
|
|
3525
3539
|
const stopwatch = getStopwatch("TSDown pipeline");
|
|
3526
3540
|
try {
|
|
@@ -3565,7 +3579,7 @@ async function tsdownExecutorFn(options, context, config5) {
|
|
|
3565
3579
|
"The Build process failed because the context is not valid. Please run this command from a workspace."
|
|
3566
3580
|
);
|
|
3567
3581
|
}
|
|
3568
|
-
await
|
|
3582
|
+
await build3({
|
|
3569
3583
|
...options,
|
|
3570
3584
|
projectRoot: (
|
|
3571
3585
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
@@ -2982,14 +2982,28 @@ async function generatePackageJson(context) {
|
|
|
2982
2982
|
|
|
2983
2983
|
// ../esbuild/src/tsup.ts
|
|
2984
2984
|
_chunkHIYOMEE3js.init_cjs_shims.call(void 0, );
|
|
2985
|
+
|
|
2986
|
+
// ../tsup/src/index.ts
|
|
2987
|
+
_chunkHIYOMEE3js.init_cjs_shims.call(void 0, );
|
|
2985
2988
|
var _tsup = require('tsup');
|
|
2989
|
+
async function build(options) {
|
|
2990
|
+
writeDebug(
|
|
2991
|
+
` \u{1F680} Running ${options.name || "tsup"} build`,
|
|
2992
|
+
options.workspaceConfig
|
|
2993
|
+
);
|
|
2994
|
+
const stopwatch = getStopwatch(`${options.name || "tsup"} build`);
|
|
2995
|
+
await _tsup.build.call(void 0, options);
|
|
2996
|
+
stopwatch();
|
|
2997
|
+
}
|
|
2998
|
+
|
|
2999
|
+
// ../esbuild/src/tsup.ts
|
|
2986
3000
|
async function executeTsup(context) {
|
|
2987
3001
|
writeDebug(
|
|
2988
3002
|
` \u{1F680} Running ${context.options.name} build`,
|
|
2989
3003
|
context.workspaceConfig
|
|
2990
3004
|
);
|
|
2991
3005
|
const stopwatch = getStopwatch(`${context.options.name} build`);
|
|
2992
|
-
await
|
|
3006
|
+
await build({
|
|
2993
3007
|
...context.options,
|
|
2994
3008
|
outDir: context.options.distDir ? _chunkHZ7RJVKLjs.joinPaths.call(void 0, context.outputPath, context.options.distDir) : context.outputPath,
|
|
2995
3009
|
workspaceConfig: context.workspaceConfig
|
|
@@ -3033,7 +3047,7 @@ async function cleanOutputPath(context) {
|
|
|
3033
3047
|
}
|
|
3034
3048
|
return context;
|
|
3035
3049
|
}
|
|
3036
|
-
async function
|
|
3050
|
+
async function build2(options) {
|
|
3037
3051
|
writeDebug(` \u26A1 Executing Storm ESBuild pipeline`);
|
|
3038
3052
|
const stopwatch = getStopwatch("ESBuild pipeline");
|
|
3039
3053
|
try {
|
|
@@ -3069,7 +3083,7 @@ async function esbuildExecutorFn(options, context, config5) {
|
|
|
3069
3083
|
"The Build process failed because the context is not valid. Please run this command from a workspace."
|
|
3070
3084
|
);
|
|
3071
3085
|
}
|
|
3072
|
-
await
|
|
3086
|
+
await build2({
|
|
3073
3087
|
...options,
|
|
3074
3088
|
projectRoot: (
|
|
3075
3089
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
@@ -3519,7 +3533,7 @@ async function cleanOutputPath2(options) {
|
|
|
3519
3533
|
}
|
|
3520
3534
|
return options;
|
|
3521
3535
|
}
|
|
3522
|
-
async function
|
|
3536
|
+
async function build3(options) {
|
|
3523
3537
|
writeDebug(` \u26A1 Executing Storm TSDown pipeline`);
|
|
3524
3538
|
const stopwatch = getStopwatch("TSDown pipeline");
|
|
3525
3539
|
try {
|
|
@@ -3564,7 +3578,7 @@ async function tsdownExecutorFn(options, context, config5) {
|
|
|
3564
3578
|
"The Build process failed because the context is not valid. Please run this command from a workspace."
|
|
3565
3579
|
);
|
|
3566
3580
|
}
|
|
3567
|
-
await
|
|
3581
|
+
await build3({
|
|
3568
3582
|
...options,
|
|
3569
3583
|
projectRoot: (
|
|
3570
3584
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
package/dist/generators.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-RQQJKGYS.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkDG3RQNESjs = require('./chunk-DG3RQNES.js');
|
|
5
5
|
require('./chunk-HZ7RJVKL.js');
|
|
6
6
|
require('./chunk-HIYOMEE3.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.initGeneratorFn =
|
|
9
|
+
exports.initGeneratorFn = _chunkDG3RQNESjs.initGeneratorFn;
|
package/dist/generators.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
var _chunkB7W5YQBNjs = require('./chunk-B7W5YQBN.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkDG3RQNESjs = require('./chunk-DG3RQNES.js');
|
|
8
8
|
require('./chunk-HZ7RJVKL.js');
|
|
9
9
|
|
|
10
10
|
|
|
@@ -16,10 +16,10 @@ var _chunkHIYOMEE3js = require('./chunk-HIYOMEE3.js');
|
|
|
16
16
|
// index.ts
|
|
17
17
|
var index_exports = {};
|
|
18
18
|
_chunkHIYOMEE3js.__export.call(void 0, index_exports, {
|
|
19
|
-
initGeneratorFn: () =>
|
|
19
|
+
initGeneratorFn: () => _chunkDG3RQNESjs.initGeneratorFn
|
|
20
20
|
});
|
|
21
21
|
_chunkHIYOMEE3js.init_cjs_shims.call(void 0, );
|
|
22
22
|
_chunkHIYOMEE3js.__reExport.call(void 0, index_exports, _chunkHIYOMEE3js.__toESM.call(void 0, _chunkB7W5YQBNjs.require_components.call(void 0, )));
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
exports.initGeneratorFn =
|
|
25
|
+
exports.initGeneratorFn = _chunkDG3RQNESjs.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 _chunkDG3RQNESjs = require('../../../chunk-DG3RQNES.js');
|
|
5
5
|
require('../../../chunk-HZ7RJVKL.js');
|
|
6
6
|
require('../../../chunk-HIYOMEE3.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.default =
|
|
10
|
+
exports.default = _chunkDG3RQNESjs.generator_default; exports.initGeneratorFn = _chunkDG3RQNESjs.initGeneratorFn;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/projen",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.21.0",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"description": "Tools for managing Projen configuration automation within a Nx workspace.",
|
|
6
6
|
"repository": {
|
|
@@ -142,5 +142,5 @@
|
|
|
142
142
|
"publishConfig": { "access": "public" },
|
|
143
143
|
"executors": "./executors.json",
|
|
144
144
|
"generators": "./generators.json",
|
|
145
|
-
"gitHead": "
|
|
145
|
+
"gitHead": "13c6595478ff00d29f11ba7a5b6e37d249c1b9f4"
|
|
146
146
|
}
|