@storm-software/projen 0.9.38 → 0.9.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 +7 -0
- package/README.md +1 -1
- package/dist/{chunk-WCN64HFB.mjs → chunk-BWJ5QDC4.mjs} +5 -13
- package/dist/{chunk-JHKTV4AJ.js → chunk-ZCDSFDVM.js} +5 -13
- 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
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Projen
|
|
4
4
|
|
|
5
|
+
## [0.9.39](https://github.com/storm-software/storm-ops/releases/tag/projen%400.9.39) (2025-04-08)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate README markdown files
|
|
10
|
+
([082eec9a5](https://github.com/storm-software/storm-ops/commit/082eec9a5))
|
|
11
|
+
|
|
5
12
|
## [0.9.38](https://github.com/storm-software/storm-ops/releases/tag/projen%400.9.38) (2025-04-07)
|
|
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 -->
|
|
@@ -2547,8 +2547,8 @@ var getEntryPoints = /* @__PURE__ */ __name(async (config, projectRoot, sourceRo
|
|
|
2547
2547
|
entryPoints.push(...Object.entries(entry).map(([key, value]) => {
|
|
2548
2548
|
if (typeof value === "string") {
|
|
2549
2549
|
return {
|
|
2550
|
-
in:
|
|
2551
|
-
out:
|
|
2550
|
+
in: value,
|
|
2551
|
+
out: key
|
|
2552
2552
|
};
|
|
2553
2553
|
} else {
|
|
2554
2554
|
return {
|
|
@@ -2800,17 +2800,9 @@ async function generatePackageJson(context2) {
|
|
|
2800
2800
|
packageJson.exports ??= {};
|
|
2801
2801
|
packageJson.exports["./package.json"] ??= "./package.json";
|
|
2802
2802
|
packageJson.exports["."] ??= `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/index.js`;
|
|
2803
|
-
const entryPoints
|
|
2804
|
-
{
|
|
2805
|
-
|
|
2806
|
-
out: "./src/index.ts"
|
|
2807
|
-
}
|
|
2808
|
-
];
|
|
2809
|
-
if (context2.options.entryPoints) {
|
|
2810
|
-
for (const entryPoint of entryPoints) {
|
|
2811
|
-
const split = entryPoint.out.split(".");
|
|
2812
|
-
split.pop();
|
|
2813
|
-
const entry = split.join(".").replaceAll("\\", "/");
|
|
2803
|
+
for (const entryPoint of context2.options.entryPoints) {
|
|
2804
|
+
if (entryPoint.out) {
|
|
2805
|
+
const entry = entryPoint.out.replaceAll("\\", "/").replaceAll(/^(\.\/)*/, "").replace(/\.([cm])?[jt]s(x)?$/, "");
|
|
2814
2806
|
packageJson.exports[`./${entry}`] ??= `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/${entry}.js`;
|
|
2815
2807
|
}
|
|
2816
2808
|
}
|
|
@@ -2546,8 +2546,8 @@ var getEntryPoints = /* @__PURE__ */ _chunkWTMG7MTKjs.__name.call(void 0, async
|
|
|
2546
2546
|
entryPoints.push(...Object.entries(entry).map(([key, value]) => {
|
|
2547
2547
|
if (typeof value === "string") {
|
|
2548
2548
|
return {
|
|
2549
|
-
in:
|
|
2550
|
-
out:
|
|
2549
|
+
in: value,
|
|
2550
|
+
out: key
|
|
2551
2551
|
};
|
|
2552
2552
|
} else {
|
|
2553
2553
|
return {
|
|
@@ -2799,17 +2799,9 @@ async function generatePackageJson(context2) {
|
|
|
2799
2799
|
packageJson.exports ??= {};
|
|
2800
2800
|
packageJson.exports["./package.json"] ??= "./package.json";
|
|
2801
2801
|
packageJson.exports["."] ??= `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/index.js`;
|
|
2802
|
-
const entryPoints
|
|
2803
|
-
{
|
|
2804
|
-
|
|
2805
|
-
out: "./src/index.ts"
|
|
2806
|
-
}
|
|
2807
|
-
];
|
|
2808
|
-
if (context2.options.entryPoints) {
|
|
2809
|
-
for (const entryPoint of entryPoints) {
|
|
2810
|
-
const split = entryPoint.out.split(".");
|
|
2811
|
-
split.pop();
|
|
2812
|
-
const entry = split.join(".").replaceAll("\\", "/");
|
|
2802
|
+
for (const entryPoint of context2.options.entryPoints) {
|
|
2803
|
+
if (entryPoint.out) {
|
|
2804
|
+
const entry = entryPoint.out.replaceAll("\\", "/").replaceAll(/^(\.\/)*/, "").replace(/\.([cm])?[jt]s(x)?$/, "");
|
|
2813
2805
|
packageJson.exports[`./${entry}`] ??= `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/${entry}.js`;
|
|
2814
2806
|
}
|
|
2815
2807
|
}
|
package/dist/generators.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-3Y6AMHJ5.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkZCDSFDVMjs = require('./chunk-ZCDSFDVM.js');
|
|
5
5
|
require('./chunk-3DQG66DJ.js');
|
|
6
6
|
require('./chunk-WTMG7MTK.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.initGeneratorFn =
|
|
9
|
+
exports.initGeneratorFn = _chunkZCDSFDVMjs.initGeneratorFn;
|
package/dist/generators.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
var _chunkZ2UXMCUYjs = require('./chunk-Z2UXMCUY.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkZCDSFDVMjs = require('./chunk-ZCDSFDVM.js');
|
|
8
8
|
require('./chunk-3DQG66DJ.js');
|
|
9
9
|
|
|
10
10
|
|
|
@@ -16,10 +16,10 @@ var _chunkWTMG7MTKjs = require('./chunk-WTMG7MTK.js');
|
|
|
16
16
|
// index.ts
|
|
17
17
|
var index_exports = {};
|
|
18
18
|
_chunkWTMG7MTKjs.__export.call(void 0, index_exports, {
|
|
19
|
-
initGeneratorFn: () =>
|
|
19
|
+
initGeneratorFn: () => _chunkZCDSFDVMjs.initGeneratorFn
|
|
20
20
|
});
|
|
21
21
|
_chunkWTMG7MTKjs.init_cjs_shims.call(void 0, );
|
|
22
22
|
_chunkWTMG7MTKjs.__reExport.call(void 0, index_exports, _chunkWTMG7MTKjs.__toESM.call(void 0, _chunkZ2UXMCUYjs.require_components.call(void 0, )));
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
exports.initGeneratorFn =
|
|
25
|
+
exports.initGeneratorFn = _chunkZCDSFDVMjs.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 _chunkZCDSFDVMjs = require('../../../chunk-ZCDSFDVM.js');
|
|
5
5
|
require('../../../chunk-3DQG66DJ.js');
|
|
6
6
|
require('../../../chunk-WTMG7MTK.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.default =
|
|
10
|
+
exports.default = _chunkZCDSFDVMjs.generator_default; exports.initGeneratorFn = _chunkZCDSFDVMjs.initGeneratorFn;
|