@storm-software/projen 0.9.74 → 0.9.76
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 +24 -0
- package/README.md +1 -1
- package/dist/{chunk-Q6VUDX73.mjs → chunk-GM25EIP6.mjs} +3 -3
- package/dist/{chunk-CMECVM4G.js → chunk-VBI5UBLI.js} +3 -3
- 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,30 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Projen
|
|
4
4
|
|
|
5
|
+
## [0.9.76](https://github.com/storm-software/storm-ops/releases/tag/projen%400.9.76) (2025-04-30)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **esbuild:** Resolve issue finding parent tsconfig path
|
|
10
|
+
([d0276f4cd](https://github.com/storm-software/storm-ops/commit/d0276f4cd))
|
|
11
|
+
|
|
12
|
+
### Miscellaneous
|
|
13
|
+
|
|
14
|
+
- **monorepo:** Regenerate README markdown files
|
|
15
|
+
([746468efe](https://github.com/storm-software/storm-ops/commit/746468efe))
|
|
16
|
+
|
|
17
|
+
## [0.9.75](https://github.com/storm-software/storm-ops/releases/tag/projen%400.9.75) (2025-04-30)
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
- **monorepo:** Resolve issue with tsconfig path in tsup
|
|
22
|
+
([98ca0489a](https://github.com/storm-software/storm-ops/commit/98ca0489a))
|
|
23
|
+
|
|
24
|
+
### Miscellaneous
|
|
25
|
+
|
|
26
|
+
- **monorepo:** Regenerate README markdown files
|
|
27
|
+
([34e5b9e9f](https://github.com/storm-software/storm-ops/commit/34e5b9e9f))
|
|
28
|
+
|
|
5
29
|
## [0.9.74](https://github.com/storm-software/storm-ops/releases/tag/projen%400.9.74) (2025-04-30)
|
|
6
30
|
|
|
7
31
|
### Bug Fixes
|
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 -->
|
|
@@ -2004,7 +2004,7 @@ var DEFAULT_BUILD_OPTIONS = {
|
|
|
2004
2004
|
// ../esbuild/src/plugins/resolve-paths.ts
|
|
2005
2005
|
init_esm_shims();
|
|
2006
2006
|
import path2 from "node:path";
|
|
2007
|
-
function resolvePathsConfig(options, cwd) {
|
|
2007
|
+
function resolvePathsConfig(options, cwd, projectRoot) {
|
|
2008
2008
|
if (options?.compilerOptions?.paths) {
|
|
2009
2009
|
const paths = Object.entries(options.compilerOptions.paths);
|
|
2010
2010
|
const resolvedPaths = paths.map(([key, paths2]) => {
|
|
@@ -2016,7 +2016,7 @@ function resolvePathsConfig(options, cwd) {
|
|
|
2016
2016
|
return Object.fromEntries(resolvedPaths);
|
|
2017
2017
|
}
|
|
2018
2018
|
if (options.extends) {
|
|
2019
|
-
const extendsPath = path2.resolve(cwd, options.extends);
|
|
2019
|
+
const extendsPath = path2.resolve(projectRoot ? joinPaths(cwd, projectRoot, options.extends) : joinPaths(cwd, options.extends));
|
|
2020
2020
|
const extendsDir = path2.dirname(extendsPath);
|
|
2021
2021
|
const extendsConfig = __require(extendsPath);
|
|
2022
2022
|
return resolvePathsConfig(extendsConfig, extendsDir);
|
|
@@ -2028,7 +2028,7 @@ var resolvePathsPlugin = /* @__PURE__ */ __name((context) => ({
|
|
|
2028
2028
|
name: "storm:resolve-paths",
|
|
2029
2029
|
setup(build3) {
|
|
2030
2030
|
const parentTsConfig = build3.initialOptions.tsconfig ? __require(joinPaths(context.workspaceConfig.workspaceRoot, build3.initialOptions.tsconfig.replace(context.workspaceConfig.workspaceRoot, ""))) : __require(joinPaths(context.workspaceConfig.workspaceRoot, "tsconfig.json"));
|
|
2031
|
-
const resolvedTsPaths = resolvePathsConfig(parentTsConfig, context.workspaceConfig.workspaceRoot);
|
|
2031
|
+
const resolvedTsPaths = resolvePathsConfig(parentTsConfig, context.workspaceConfig.workspaceRoot, context.options.projectRoot);
|
|
2032
2032
|
const packagesRegex = new RegExp(`^(${Object.keys(resolvedTsPaths).join("|")})$`);
|
|
2033
2033
|
build3.onResolve({
|
|
2034
2034
|
filter: packagesRegex
|
|
@@ -2003,7 +2003,7 @@ var DEFAULT_BUILD_OPTIONS = {
|
|
|
2003
2003
|
// ../esbuild/src/plugins/resolve-paths.ts
|
|
2004
2004
|
_chunkLTKRUM5Pjs.init_cjs_shims.call(void 0, );
|
|
2005
2005
|
|
|
2006
|
-
function resolvePathsConfig(options, cwd) {
|
|
2006
|
+
function resolvePathsConfig(options, cwd, projectRoot) {
|
|
2007
2007
|
if (_optionalChain([options, 'optionalAccess', _109 => _109.compilerOptions, 'optionalAccess', _110 => _110.paths])) {
|
|
2008
2008
|
const paths = Object.entries(options.compilerOptions.paths);
|
|
2009
2009
|
const resolvedPaths = paths.map(([key, paths2]) => {
|
|
@@ -2015,7 +2015,7 @@ function resolvePathsConfig(options, cwd) {
|
|
|
2015
2015
|
return Object.fromEntries(resolvedPaths);
|
|
2016
2016
|
}
|
|
2017
2017
|
if (options.extends) {
|
|
2018
|
-
const extendsPath = path4.default.resolve(cwd, options.extends);
|
|
2018
|
+
const extendsPath = path4.default.resolve(projectRoot ? _chunkPHMFOUDCjs.joinPaths.call(void 0, cwd, projectRoot, options.extends) : _chunkPHMFOUDCjs.joinPaths.call(void 0, cwd, options.extends));
|
|
2019
2019
|
const extendsDir = path4.default.dirname(extendsPath);
|
|
2020
2020
|
const extendsConfig = _chunkLTKRUM5Pjs.__require.call(void 0, extendsPath);
|
|
2021
2021
|
return resolvePathsConfig(extendsConfig, extendsDir);
|
|
@@ -2027,7 +2027,7 @@ var resolvePathsPlugin = /* @__PURE__ */ _chunkLTKRUM5Pjs.__name.call(void 0, (c
|
|
|
2027
2027
|
name: "storm:resolve-paths",
|
|
2028
2028
|
setup(build3) {
|
|
2029
2029
|
const parentTsConfig = build3.initialOptions.tsconfig ? _chunkLTKRUM5Pjs.__require.call(void 0, _chunkPHMFOUDCjs.joinPaths.call(void 0, context.workspaceConfig.workspaceRoot, build3.initialOptions.tsconfig.replace(context.workspaceConfig.workspaceRoot, ""))) : _chunkLTKRUM5Pjs.__require.call(void 0, _chunkPHMFOUDCjs.joinPaths.call(void 0, context.workspaceConfig.workspaceRoot, "tsconfig.json"));
|
|
2030
|
-
const resolvedTsPaths = resolvePathsConfig(parentTsConfig, context.workspaceConfig.workspaceRoot);
|
|
2030
|
+
const resolvedTsPaths = resolvePathsConfig(parentTsConfig, context.workspaceConfig.workspaceRoot, context.options.projectRoot);
|
|
2031
2031
|
const packagesRegex = new RegExp(`^(${Object.keys(resolvedTsPaths).join("|")})$`);
|
|
2032
2032
|
build3.onResolve({
|
|
2033
2033
|
filter: packagesRegex
|
package/dist/generators.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-DQ67WT5G.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkVBI5UBLIjs = require('./chunk-VBI5UBLI.js');
|
|
5
5
|
require('./chunk-PHMFOUDC.js');
|
|
6
6
|
require('./chunk-LTKRUM5P.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.initGeneratorFn =
|
|
9
|
+
exports.initGeneratorFn = _chunkVBI5UBLIjs.initGeneratorFn;
|
package/dist/generators.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
var _chunkRLLFZW5Zjs = require('./chunk-RLLFZW5Z.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkVBI5UBLIjs = require('./chunk-VBI5UBLI.js');
|
|
8
8
|
require('./chunk-PHMFOUDC.js');
|
|
9
9
|
|
|
10
10
|
|
|
@@ -16,10 +16,10 @@ var _chunkLTKRUM5Pjs = require('./chunk-LTKRUM5P.js');
|
|
|
16
16
|
// index.ts
|
|
17
17
|
var index_exports = {};
|
|
18
18
|
_chunkLTKRUM5Pjs.__export.call(void 0, index_exports, {
|
|
19
|
-
initGeneratorFn: () =>
|
|
19
|
+
initGeneratorFn: () => _chunkVBI5UBLIjs.initGeneratorFn
|
|
20
20
|
});
|
|
21
21
|
_chunkLTKRUM5Pjs.init_cjs_shims.call(void 0, );
|
|
22
22
|
_chunkLTKRUM5Pjs.__reExport.call(void 0, index_exports, _chunkLTKRUM5Pjs.__toESM.call(void 0, _chunkRLLFZW5Zjs.require_components.call(void 0, )));
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
exports.initGeneratorFn =
|
|
25
|
+
exports.initGeneratorFn = _chunkVBI5UBLIjs.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 _chunkVBI5UBLIjs = require('../../../chunk-VBI5UBLI.js');
|
|
5
5
|
require('../../../chunk-PHMFOUDC.js');
|
|
6
6
|
require('../../../chunk-LTKRUM5P.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.default =
|
|
10
|
+
exports.default = _chunkVBI5UBLIjs.generator_default; exports.initGeneratorFn = _chunkVBI5UBLIjs.initGeneratorFn;
|