@bb-labs/bldr 0.0.17 → 0.0.19
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/README.md +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -37,4 +37,4 @@ bun add -d @bb-labs/bldr
|
|
|
37
37
|
- **Split Terminal UI**: In watch mode, displays three panels side by side showing output from TypeScript compiler, tsc-alias, and bldr itself
|
|
38
38
|
- **Clean Builds**: Always cleans output directory before building
|
|
39
39
|
- **Path Alias Support**: Integrates with tsc-alias for path mapping
|
|
40
|
-
- **Process Management**: Properly handles child process cleanup on
|
|
40
|
+
- **Process Management**: Properly handles child process cleanup on exitt
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bb-labs/bldr",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.19",
|
|
4
4
|
"npm": true,
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"dist"
|
|
15
15
|
],
|
|
16
16
|
"scripts": {
|
|
17
|
-
"
|
|
18
|
-
"
|
|
17
|
+
"prepare": "bun run build",
|
|
18
|
+
"build": "tsc && chmod +x dist/index.js",
|
|
19
19
|
"test:build": "node dist/index.js --project test/tsconfig.json",
|
|
20
20
|
"test:watch": "node dist/index.js --watch --project test/tsconfig.json",
|
|
21
21
|
"clean": "rm -rf node_modules bun.lock dist"
|