@storm-software/build-tools 0.2.3 → 0.2.4
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/package.json +1 -1
- package/src/build/ts-build.ts +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 0.2.4 (2024-03-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Further updates to Nx plugin modules ([82b6ab01](https://github.com/storm-software/storm-ops/commit/82b6ab01))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
1
13
|
## 0.2.3 (2024-03-28)
|
|
2
14
|
|
|
3
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/build-tools",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
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": {
|
package/src/build/ts-build.ts
CHANGED
|
@@ -29,7 +29,6 @@ import {
|
|
|
29
29
|
createProjectRootMappings,
|
|
30
30
|
findProjectForPath
|
|
31
31
|
} from "nx/src/project-graph/utils/find-project-for-path";
|
|
32
|
-
import { registerPluginTSTranspiler } from "nx/src/utils/nx-plugin";
|
|
33
32
|
|
|
34
33
|
/**
|
|
35
34
|
* Build and bundle a TypeScript project using the tsup build tools.
|
|
@@ -50,7 +49,6 @@ export async function build(config: StormConfig, options: Partial<TypeScriptBuil
|
|
|
50
49
|
);
|
|
51
50
|
}
|
|
52
51
|
|
|
53
|
-
registerPluginTSTranspiler();
|
|
54
52
|
const projectGraph = await createProjectGraphAsync({
|
|
55
53
|
exitOnError: true
|
|
56
54
|
});
|