@storm-software/projen 0.9.3 → 0.9.5
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-UFYNNMRC.mjs → chunk-CFLWQRZK.mjs} +8 -9
- package/dist/{chunk-DQU76V3D.js → chunk-K34NGF5T.js} +8 -9
- 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 +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 0.9.5 (2025-02-02)
|
|
2
|
+
|
|
3
|
+
### Miscellaneous
|
|
4
|
+
|
|
5
|
+
- **monorepo:** Regenerate README markdown files ([b578d626a](https://github.com/storm-software/storm-ops/commit/b578d626a))
|
|
6
|
+
|
|
7
|
+
## 0.9.4 (2025-02-02)
|
|
8
|
+
|
|
9
|
+
### Miscellaneous
|
|
10
|
+
|
|
11
|
+
- **monorepo:** Regenerate README markdown files ([a2b221881](https://github.com/storm-software/storm-ops/commit/a2b221881))
|
|
12
|
+
|
|
1
13
|
## 0.9.3 (2025-02-02)
|
|
2
14
|
|
|
3
15
|
### 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 -->
|
|
@@ -541,55 +541,55 @@ var getLogFn = /* @__PURE__ */ __name((logLevel = LogLevel.INFO, config = {}, _c
|
|
|
541
541
|
if (typeof logLevel === "number" && LogLevel.FATAL >= logLevel) {
|
|
542
542
|
return (message) => {
|
|
543
543
|
console.error(`
|
|
544
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.fatal ?? "#7d1a1a")(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal]`)}
|
|
544
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.fatal ?? "#7d1a1a")(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
545
545
|
`);
|
|
546
546
|
};
|
|
547
547
|
}
|
|
548
548
|
if (typeof logLevel === "number" && LogLevel.ERROR >= logLevel) {
|
|
549
549
|
return (message) => {
|
|
550
550
|
console.error(`
|
|
551
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.danger ?? "#f85149")(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error]`)}
|
|
551
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.danger ?? "#f85149")(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
552
552
|
`);
|
|
553
553
|
};
|
|
554
554
|
}
|
|
555
555
|
if (typeof logLevel === "number" && LogLevel.WARN >= logLevel) {
|
|
556
556
|
return (message) => {
|
|
557
557
|
console.warn(`
|
|
558
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.warning ?? "#e3b341")(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn]`)}
|
|
558
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.warning ?? "#e3b341")(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
559
559
|
`);
|
|
560
560
|
};
|
|
561
561
|
}
|
|
562
562
|
if (typeof logLevel === "number" && LogLevel.SUCCESS >= logLevel) {
|
|
563
563
|
return (message) => {
|
|
564
564
|
console.info(`
|
|
565
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.success ?? "#56d364")(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success]`)}
|
|
565
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.success ?? "#56d364")(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
566
566
|
`);
|
|
567
567
|
};
|
|
568
568
|
}
|
|
569
569
|
if (typeof logLevel === "number" && LogLevel.INFO >= logLevel) {
|
|
570
570
|
return (message) => {
|
|
571
571
|
console.info(`
|
|
572
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? "#58a6ff")(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info]`)}
|
|
572
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? "#58a6ff")(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
573
573
|
`);
|
|
574
574
|
};
|
|
575
575
|
}
|
|
576
576
|
if (typeof logLevel === "number" && LogLevel.DEBUG >= logLevel) {
|
|
577
577
|
return (message) => {
|
|
578
578
|
console.debug(`
|
|
579
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug]`)}
|
|
579
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
580
580
|
`);
|
|
581
581
|
};
|
|
582
582
|
}
|
|
583
583
|
if (typeof logLevel === "number" && LogLevel.TRACE >= logLevel) {
|
|
584
584
|
return (message) => {
|
|
585
585
|
console.debug(`
|
|
586
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace]`)}
|
|
586
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
587
587
|
`);
|
|
588
588
|
};
|
|
589
589
|
}
|
|
590
590
|
return (message) => {
|
|
591
591
|
console.log(`
|
|
592
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System]`)}
|
|
592
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
593
593
|
`);
|
|
594
594
|
};
|
|
595
595
|
}, "getLogFn");
|
|
@@ -606,7 +606,6 @@ var getStopwatch = /* @__PURE__ */ __name((name) => {
|
|
|
606
606
|
const end = process.hrtime(start);
|
|
607
607
|
console.info(`
|
|
608
608
|
> \u23F1\uFE0F The${name ? ` ${name}` : ""} process took ${Math.round(end[0] * 1e3 + end[1] / 1e6)}ms to complete
|
|
609
|
-
|
|
610
609
|
`);
|
|
611
610
|
};
|
|
612
611
|
}, "getStopwatch");
|
|
@@ -540,55 +540,55 @@ var getLogFn = /* @__PURE__ */ _chunkZH7QZ5EFjs.__name.call(void 0, (logLevel =
|
|
|
540
540
|
if (typeof logLevel === "number" && LogLevel.FATAL >= logLevel) {
|
|
541
541
|
return (message) => {
|
|
542
542
|
console.error(`
|
|
543
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.fatal, () => ( "#7d1a1a")))(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal]`)}
|
|
543
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.fatal, () => ( "#7d1a1a")))(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
544
544
|
`);
|
|
545
545
|
};
|
|
546
546
|
}
|
|
547
547
|
if (typeof logLevel === "number" && LogLevel.ERROR >= logLevel) {
|
|
548
548
|
return (message) => {
|
|
549
549
|
console.error(`
|
|
550
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.danger, () => ( "#f85149")))(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error]`)}
|
|
550
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.danger, () => ( "#f85149")))(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
551
551
|
`);
|
|
552
552
|
};
|
|
553
553
|
}
|
|
554
554
|
if (typeof logLevel === "number" && LogLevel.WARN >= logLevel) {
|
|
555
555
|
return (message) => {
|
|
556
556
|
console.warn(`
|
|
557
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.warning, () => ( "#e3b341")))(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn]`)}
|
|
557
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.warning, () => ( "#e3b341")))(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
558
558
|
`);
|
|
559
559
|
};
|
|
560
560
|
}
|
|
561
561
|
if (typeof logLevel === "number" && LogLevel.SUCCESS >= logLevel) {
|
|
562
562
|
return (message) => {
|
|
563
563
|
console.info(`
|
|
564
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.success, () => ( "#56d364")))(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success]`)}
|
|
564
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.success, () => ( "#56d364")))(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
565
565
|
`);
|
|
566
566
|
};
|
|
567
567
|
}
|
|
568
568
|
if (typeof logLevel === "number" && LogLevel.INFO >= logLevel) {
|
|
569
569
|
return (message) => {
|
|
570
570
|
console.info(`
|
|
571
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.info, () => ( "#58a6ff")))(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info]`)}
|
|
571
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.info, () => ( "#58a6ff")))(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
572
572
|
`);
|
|
573
573
|
};
|
|
574
574
|
}
|
|
575
575
|
if (typeof logLevel === "number" && LogLevel.DEBUG >= logLevel) {
|
|
576
576
|
return (message) => {
|
|
577
577
|
console.debug(`
|
|
578
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug]`)}
|
|
578
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
579
579
|
`);
|
|
580
580
|
};
|
|
581
581
|
}
|
|
582
582
|
if (typeof logLevel === "number" && LogLevel.TRACE >= logLevel) {
|
|
583
583
|
return (message) => {
|
|
584
584
|
console.debug(`
|
|
585
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace]`)}
|
|
585
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
586
586
|
`);
|
|
587
587
|
};
|
|
588
588
|
}
|
|
589
589
|
return (message) => {
|
|
590
590
|
console.log(`
|
|
591
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System]`)}
|
|
591
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
592
592
|
`);
|
|
593
593
|
};
|
|
594
594
|
}, "getLogFn");
|
|
@@ -605,7 +605,6 @@ var getStopwatch = /* @__PURE__ */ _chunkZH7QZ5EFjs.__name.call(void 0, (name) =
|
|
|
605
605
|
const end = process.hrtime(start);
|
|
606
606
|
console.info(`
|
|
607
607
|
> \u23F1\uFE0F The${name ? ` ${name}` : ""} process took ${Math.round(end[0] * 1e3 + end[1] / 1e6)}ms to complete
|
|
608
|
-
|
|
609
608
|
`);
|
|
610
609
|
};
|
|
611
610
|
}, "getStopwatch");
|
package/dist/generators.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-RDD7JUBK.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkK34NGF5Tjs = require('./chunk-K34NGF5T.js');
|
|
5
5
|
require('./chunk-3HI6WK3M.js');
|
|
6
6
|
require('./chunk-ZH7QZ5EF.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.initGeneratorFn =
|
|
9
|
+
exports.initGeneratorFn = _chunkK34NGF5Tjs.initGeneratorFn;
|
package/dist/generators.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
var _chunkFVKYD24Tjs = require('./chunk-FVKYD24T.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkK34NGF5Tjs = require('./chunk-K34NGF5T.js');
|
|
8
8
|
require('./chunk-3HI6WK3M.js');
|
|
9
9
|
|
|
10
10
|
|
|
@@ -16,10 +16,10 @@ var _chunkZH7QZ5EFjs = require('./chunk-ZH7QZ5EF.js');
|
|
|
16
16
|
// index.ts
|
|
17
17
|
var index_exports = {};
|
|
18
18
|
_chunkZH7QZ5EFjs.__export.call(void 0, index_exports, {
|
|
19
|
-
initGeneratorFn: () =>
|
|
19
|
+
initGeneratorFn: () => _chunkK34NGF5Tjs.initGeneratorFn
|
|
20
20
|
});
|
|
21
21
|
_chunkZH7QZ5EFjs.init_cjs_shims.call(void 0, );
|
|
22
22
|
_chunkZH7QZ5EFjs.__reExport.call(void 0, index_exports, _chunkZH7QZ5EFjs.__toESM.call(void 0, _chunkFVKYD24Tjs.require_components.call(void 0, )));
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
exports.initGeneratorFn =
|
|
25
|
+
exports.initGeneratorFn = _chunkK34NGF5Tjs.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 _chunkK34NGF5Tjs = require('../../../chunk-K34NGF5T.js');
|
|
5
5
|
require('../../../chunk-3HI6WK3M.js');
|
|
6
6
|
require('../../../chunk-ZH7QZ5EF.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.default =
|
|
10
|
+
exports.default = _chunkK34NGF5Tjs.generator_default; exports.initGeneratorFn = _chunkK34NGF5Tjs.initGeneratorFn;
|