@bb-labs/bldr 0.0.14 → 0.0.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/README.md +1 -11
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ A TypeScript build tool with watch mode, automatic dist synchronization, and spl
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
bun add -d @bb-labs/bldr
|
|
8
|
+
bun add -d @bb-labs/bldr
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## Usage
|
|
@@ -32,16 +32,6 @@ bun add -d @bb-labs/bldr tsc-alias typescript
|
|
|
32
32
|
- **Ctrl+L**: Jump all panels to the bottom
|
|
33
33
|
- **Ctrl+C/Escape/Q**: Exit the application
|
|
34
34
|
|
|
35
|
-
## Testing
|
|
36
|
-
|
|
37
|
-
Run `bun run test:dev` to test the build tool with the included test files in `test-src/`. This will:
|
|
38
|
-
|
|
39
|
-
- Build files from `test-src/` to `test-dist/`
|
|
40
|
-
- Show the split-terminal UI with real-time updates
|
|
41
|
-
- Watch for changes and rebuild automatically
|
|
42
|
-
|
|
43
|
-
Add or modify files in `test-src/` to see the build tool in action!
|
|
44
|
-
|
|
45
35
|
## Features
|
|
46
36
|
|
|
47
37
|
- **Split Terminal UI**: In watch mode, displays three panels side by side showing output from TypeScript compiler, tsc-alias, and bldr itself
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bb-labs/bldr",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"bldr": "./dist/index.js"
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"scripts": {
|
|
12
12
|
"build": "tsc",
|
|
13
13
|
"postbuild": "chmod +x dist/index.js",
|
|
14
|
-
"test:build": "node dist/index.js --project test
|
|
15
|
-
"test:watch": "node dist/index.js --watch --project test
|
|
14
|
+
"test:build": "node dist/index.js --project test/tsconfig.json",
|
|
15
|
+
"test:watch": "node dist/index.js --watch --project test/tsconfig.json",
|
|
16
16
|
"clean": "rm -rf node_modules bun.lock dist"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|