@storm-software/workspace-tools 1.180.6 → 1.180.8
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 +14 -0
- package/README.md +1 -1
- package/index.js +22 -4
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/rollup/executor.js +22 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## 1.180.8 (2024-09-11)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **build-tools:** Resolved issue with missing TypeScript declarations
|
|
6
|
+
([4cf894fe](https://github.com/storm-software/storm-ops/commit/4cf894fe))
|
|
7
|
+
|
|
8
|
+
## 1.180.7 (2024-09-11)
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
- **build-tools:** Invoke chdir in the build function
|
|
13
|
+
([43f69ff5](https://github.com/storm-software/storm-ops/commit/43f69ff5))
|
|
14
|
+
|
|
1
15
|
## 1.180.6 (2024-09-11)
|
|
2
16
|
|
|
3
17
|
### 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 -->
|
package/index.js
CHANGED
|
@@ -437550,7 +437550,13 @@ async function withRollupConfig(rawOptions, rollupConfig = {}, dependencies, con
|
|
|
437550
437550
|
);
|
|
437551
437551
|
const tsConfigFile = ts.readConfigFile(tsConfigPath, ts.sys.readFile);
|
|
437552
437552
|
const tsConfig = ts.parseJsonConfigFileContent(
|
|
437553
|
-
|
|
437553
|
+
{
|
|
437554
|
+
...tsConfigFile.config,
|
|
437555
|
+
include: [
|
|
437556
|
+
...tsConfigFile.config?.include && Array.isArray(tsConfigFile.config.include) ? tsConfigFile.config.include : [],
|
|
437557
|
+
(0, import_node_path14.join)(import_devkit7.workspaceRoot, "node_modules/typescript/lib/*.d.ts")
|
|
437558
|
+
]
|
|
437559
|
+
},
|
|
437554
437560
|
ts.sys,
|
|
437555
437561
|
(0, import_node_path14.dirname)(tsConfigPath)
|
|
437556
437562
|
);
|
|
@@ -437659,7 +437665,7 @@ async function withRollupConfig(rawOptions, rollupConfig = {}, dependencies, con
|
|
|
437659
437665
|
config
|
|
437660
437666
|
)
|
|
437661
437667
|
},
|
|
437662
|
-
verbosity:
|
|
437668
|
+
verbosity: convertRpts2LogLevel(config?.logLevel ?? "warn")
|
|
437663
437669
|
}),
|
|
437664
437670
|
(0, import_type_definitions.typeDefinitions)({
|
|
437665
437671
|
projectRoot
|
|
@@ -437678,9 +437684,7 @@ async function withRollupConfig(rawOptions, rollupConfig = {}, dependencies, con
|
|
|
437678
437684
|
getBabelInputPlugin({
|
|
437679
437685
|
// Lets `@nx/js/babel` preset know that we are packaging.
|
|
437680
437686
|
caller: {
|
|
437681
|
-
// Ignoring type checks for caller since we have custom attributes
|
|
437682
437687
|
isNxPackage: true,
|
|
437683
|
-
// Always target esnext and let rollup handle cjs
|
|
437684
437688
|
supportsStaticESM: true,
|
|
437685
437689
|
isModern: true
|
|
437686
437690
|
},
|
|
@@ -437708,6 +437712,20 @@ async function withRollupConfig(rawOptions, rollupConfig = {}, dependencies, con
|
|
|
437708
437712
|
}
|
|
437709
437713
|
return finalConfig;
|
|
437710
437714
|
}
|
|
437715
|
+
function convertRpts2LogLevel(logLevel) {
|
|
437716
|
+
switch (logLevel) {
|
|
437717
|
+
case "warn":
|
|
437718
|
+
return 1;
|
|
437719
|
+
case "info":
|
|
437720
|
+
return 2;
|
|
437721
|
+
case "debug":
|
|
437722
|
+
case "trace":
|
|
437723
|
+
case "all":
|
|
437724
|
+
return 3;
|
|
437725
|
+
default:
|
|
437726
|
+
return 0;
|
|
437727
|
+
}
|
|
437728
|
+
}
|
|
437711
437729
|
function createInput(options) {
|
|
437712
437730
|
if (global.NX_GRAPH_CREATION) return {};
|
|
437713
437731
|
const mainEntryFileName = options.outputFileName || options.main;
|