bs9 1.5.0 → 1.5.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/README.md +1 -1
- package/package.json +12 -3
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
16
|
# One-click installer (installs Bun + BS9)
|
|
17
|
-
curl -fsSL https://raw.githubusercontent.com/xarhang/bs9/setup.sh | bash
|
|
17
|
+
curl -fsSL https://raw.githubusercontent.com/xarhang/bs9/main/setup.sh | bash
|
|
18
18
|
|
|
19
19
|
# Or manual install
|
|
20
20
|
git clone https://github.com/xarhang/bs9.git
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bs9",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.4",
|
|
4
4
|
"description": "Bun Sentinel 9 - High-performance, non-root process manager for Bun",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.ts",
|
|
@@ -17,8 +17,17 @@
|
|
|
17
17
|
"scripts": {
|
|
18
18
|
"start": "bun run src/index.ts",
|
|
19
19
|
"build": "bun build ./bin/bs9 --outdir ./dist --target bun",
|
|
20
|
-
"
|
|
21
|
-
"
|
|
20
|
+
"dev": "bun --watch ./bin/bs9",
|
|
21
|
+
"test": "bun test",
|
|
22
|
+
"version:patch": "bun scripts/version-manager.js patch",
|
|
23
|
+
"version:minor": "bun scripts/version-manager.js minor",
|
|
24
|
+
"version:major": "bun scripts/version-manager.js major",
|
|
25
|
+
"publish:patch": "bun scripts/auto-publish.js patch",
|
|
26
|
+
"publish:minor": "bun scripts/auto-publish.js minor",
|
|
27
|
+
"publish:major": "bun scripts/auto-publish.js major",
|
|
28
|
+
"test:patch": "bun scripts/test-publish.js patch",
|
|
29
|
+
"test:minor": "bun scripts/test-publish.js minor",
|
|
30
|
+
"test:major": "bun scripts/test-publish.js major"
|
|
22
31
|
},
|
|
23
32
|
"keywords": [
|
|
24
33
|
"bun",
|