@bb-labs/bldr 0.0.14 → 0.0.16

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.
Files changed (2) hide show
  1. package/README.md +1 -11
  2. package/package.json +7 -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 tsc-alias typescript
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,10 @@
1
1
  {
2
2
  "name": "@bb-labs/bldr",
3
- "version": "0.0.14",
3
+ "version": "0.0.16",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "https://github.com/beepbop-labs/libraries.git"
7
+ },
4
8
  "type": "module",
5
9
  "bin": {
6
10
  "bldr": "./dist/index.js"
@@ -11,8 +15,8 @@
11
15
  "scripts": {
12
16
  "build": "tsc",
13
17
  "postbuild": "chmod +x dist/index.js",
14
- "test:build": "node dist/index.js --project test-src/tsconfig.json",
15
- "test:watch": "node dist/index.js --watch --project test-src/tsconfig.json",
18
+ "test:build": "node dist/index.js --project test/tsconfig.json",
19
+ "test:watch": "node dist/index.js --watch --project test/tsconfig.json",
16
20
  "clean": "rm -rf node_modules bun.lock dist"
17
21
  },
18
22
  "devDependencies": {