@storm-software/build-tools 0.4.14 → 0.4.15
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/bin/build.mjs +6 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 0.4.15 (2024-04-08)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **build-tools:** Update module typings for bin and package files ([f3ecfe59](https://github.com/storm-software/storm-ops/commit/f3ecfe59))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
1
13
|
## 0.4.14 (2024-04-08)
|
|
2
14
|
|
|
3
15
|
|
package/bin/build.mjs
CHANGED
|
@@ -1,14 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
|
-
import {
|
|
4
|
-
exitWithSuccess,
|
|
5
|
-
handleProcess,
|
|
6
|
-
loadStormConfig,
|
|
7
|
-
writeSuccess
|
|
8
|
-
} from "@storm-software/config-tools";
|
|
9
3
|
import { createProgram } from "../src/cli";
|
|
10
4
|
|
|
11
5
|
const handle = async () => {
|
|
6
|
+
const { exitWithSuccess, handleProcess, loadStormConfig, writeSuccess } =
|
|
7
|
+
await import("@storm-software/config-tools");
|
|
8
|
+
|
|
12
9
|
const config = await loadStormConfig();
|
|
13
10
|
handleProcess(config);
|
|
14
11
|
|
|
@@ -21,5 +18,7 @@ const handle = async () => {
|
|
|
21
18
|
};
|
|
22
19
|
|
|
23
20
|
handle().then(() => {
|
|
24
|
-
|
|
21
|
+
return import("@storm-software/config-tools").then(mod => {
|
|
22
|
+
mod.loadStormConfig().then(config => mod.exitWithSuccess(config));
|
|
23
|
+
});
|
|
25
24
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/build-tools",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.15",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "⚡The Storm-Ops monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.",
|
|
6
6
|
"repository": {
|