@storm-software/projen 0.21.37 → 0.21.39
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 -1
- package/dist/{chunk-OPP7F5A7.js → chunk-65LCSXJ4.js} +3 -5
- package/dist/{chunk-X4UU7INO.mjs → chunk-PBQCGSAG.mjs} +3 -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 +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,27 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Projen
|
|
4
4
|
|
|
5
|
+
## [0.21.38](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.38) (11/14/2025)
|
|
6
|
+
|
|
7
|
+
### Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated **workspace-tools** to **v1.293.8**
|
|
10
|
+
- Updated **config-tools** to **v1.188.38**
|
|
11
|
+
- Updated **config** to **v1.134.38**
|
|
12
|
+
|
|
13
|
+
## [0.21.37](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.37) (11/14/2025)
|
|
14
|
+
|
|
15
|
+
### Miscellaneous
|
|
16
|
+
|
|
17
|
+
- **monorepo:** Regenerate README markdown files
|
|
18
|
+
([a0e00b677](https://github.com/storm-software/storm-ops/commit/a0e00b677))
|
|
19
|
+
|
|
20
|
+
### Updated Dependencies
|
|
21
|
+
|
|
22
|
+
- Updated **workspace-tools** to **v1.293.7**
|
|
23
|
+
- Updated **config-tools** to **v1.188.37**
|
|
24
|
+
- Updated **config** to **v1.134.37**
|
|
25
|
+
|
|
5
26
|
## [0.21.36](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.36) (11/13/2025)
|
|
6
27
|
|
|
7
28
|
### Updated Dependencies
|
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 -->
|
|
@@ -36,6 +36,7 @@ var _defu = require('defu'); var _defu2 = _interopRequireDefault(_defu);
|
|
|
36
36
|
|
|
37
37
|
// ../config-tools/src/logger/console.ts
|
|
38
38
|
_chunkANVGCRXXjs.init_cjs_shims.call(void 0, );
|
|
39
|
+
var _formatDistanceToNowStrict = require('date-fns/formatDistanceToNowStrict');
|
|
39
40
|
|
|
40
41
|
// ../config-tools/src/types.ts
|
|
41
42
|
_chunkANVGCRXXjs.init_cjs_shims.call(void 0, );
|
|
@@ -306,14 +307,11 @@ var writeSuccess = (message, config) => getLogFn(LogLevel.SUCCESS, config)(messa
|
|
|
306
307
|
var writeDebug = (message, config) => getLogFn(LogLevel.DEBUG, config)(message);
|
|
307
308
|
var writeTrace = (message, config) => getLogFn(LogLevel.TRACE, config)(message);
|
|
308
309
|
var getStopwatch = (name) => {
|
|
309
|
-
const start =
|
|
310
|
+
const start = /* @__PURE__ */ new Date();
|
|
310
311
|
return () => {
|
|
311
|
-
const end = process.hrtime(start);
|
|
312
312
|
console.info(
|
|
313
313
|
`
|
|
314
|
-
> \u23F1\uFE0F The${name ? ` ${name}` : ""} process took ${
|
|
315
|
-
end[0] * 1e3 + end[1] / 1e6
|
|
316
|
-
)}ms to complete
|
|
314
|
+
> \u23F1\uFE0F The${name ? ` ${name}` : ""} process took ${_formatDistanceToNowStrict.formatDistanceToNowStrict.call(void 0, start)} to complete
|
|
317
315
|
`
|
|
318
316
|
);
|
|
319
317
|
};
|
|
@@ -37,6 +37,7 @@ import defu from "defu";
|
|
|
37
37
|
|
|
38
38
|
// ../config-tools/src/logger/console.ts
|
|
39
39
|
init_esm_shims();
|
|
40
|
+
import { formatDistanceToNowStrict } from "date-fns/formatDistanceToNowStrict";
|
|
40
41
|
|
|
41
42
|
// ../config-tools/src/types.ts
|
|
42
43
|
init_esm_shims();
|
|
@@ -307,14 +308,11 @@ var writeSuccess = (message, config) => getLogFn(LogLevel.SUCCESS, config)(messa
|
|
|
307
308
|
var writeDebug = (message, config) => getLogFn(LogLevel.DEBUG, config)(message);
|
|
308
309
|
var writeTrace = (message, config) => getLogFn(LogLevel.TRACE, config)(message);
|
|
309
310
|
var getStopwatch = (name) => {
|
|
310
|
-
const start =
|
|
311
|
+
const start = /* @__PURE__ */ new Date();
|
|
311
312
|
return () => {
|
|
312
|
-
const end = process.hrtime(start);
|
|
313
313
|
console.info(
|
|
314
314
|
`
|
|
315
|
-
> \u23F1\uFE0F The${name ? ` ${name}` : ""} process took ${
|
|
316
|
-
end[0] * 1e3 + end[1] / 1e6
|
|
317
|
-
)}ms to complete
|
|
315
|
+
> \u23F1\uFE0F The${name ? ` ${name}` : ""} process took ${formatDistanceToNowStrict(start)} to complete
|
|
318
316
|
`
|
|
319
317
|
);
|
|
320
318
|
};
|
package/dist/generators.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-2J4V6NGV.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunk65LCSXJ4js = require('./chunk-65LCSXJ4.js');
|
|
5
5
|
require('./chunk-ICQM664N.js');
|
|
6
6
|
require('./chunk-ANVGCRXX.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.initGeneratorFn =
|
|
9
|
+
exports.initGeneratorFn = _chunk65LCSXJ4js.initGeneratorFn;
|
package/dist/generators.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
var _chunkTLCUVFDEjs = require('./chunk-TLCUVFDE.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunk65LCSXJ4js = require('./chunk-65LCSXJ4.js');
|
|
8
8
|
require('./chunk-ICQM664N.js');
|
|
9
9
|
|
|
10
10
|
|
|
@@ -16,10 +16,10 @@ var _chunkANVGCRXXjs = require('./chunk-ANVGCRXX.js');
|
|
|
16
16
|
// index.ts
|
|
17
17
|
var index_exports = {};
|
|
18
18
|
_chunkANVGCRXXjs.__export.call(void 0, index_exports, {
|
|
19
|
-
initGeneratorFn: () =>
|
|
19
|
+
initGeneratorFn: () => _chunk65LCSXJ4js.initGeneratorFn
|
|
20
20
|
});
|
|
21
21
|
_chunkANVGCRXXjs.init_cjs_shims.call(void 0, );
|
|
22
22
|
_chunkANVGCRXXjs.__reExport.call(void 0, index_exports, _chunkANVGCRXXjs.__toESM.call(void 0, _chunkTLCUVFDEjs.require_components.call(void 0, )));
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
exports.initGeneratorFn =
|
|
25
|
+
exports.initGeneratorFn = _chunk65LCSXJ4js.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 _chunk65LCSXJ4js = require('../../../chunk-65LCSXJ4.js');
|
|
5
5
|
require('../../../chunk-ICQM664N.js');
|
|
6
6
|
require('../../../chunk-ANVGCRXX.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.default =
|
|
10
|
+
exports.default = _chunk65LCSXJ4js.generator_default; exports.initGeneratorFn = _chunk65LCSXJ4js.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.39",
|
|
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.0.3",
|
|
118
|
-
"@storm-software/config": "1.134.
|
|
119
|
-
"@storm-software/config-tools": "1.188.
|
|
120
|
-
"@storm-software/workspace-tools": "1.293.
|
|
118
|
+
"@storm-software/config": "1.134.38",
|
|
119
|
+
"@storm-software/config-tools": "1.188.38",
|
|
120
|
+
"@storm-software/workspace-tools": "1.293.8",
|
|
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": "683b06afd59fd93e874443a9fde76c586e2fc05f"
|
|
146
146
|
}
|