@abyrd9/harbor-cli 0.0.1 → 0.0.2
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 +3 -1
- package/package.json +5 -8
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ A CLI tool for those small side projects that only run a few services. Harbor al
|
|
|
9
9
|
## Installation
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
npm i -g harbor-cli
|
|
12
|
+
npm i -g @abyrd9/harbor-cli
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
## Prerequisites
|
|
@@ -93,6 +93,8 @@ app.localhost {
|
|
|
93
93
|
}
|
|
94
94
|
```
|
|
95
95
|
|
|
96
|
+
> Note: Some services may be tricky with Caddy and getting HMR to work or whatever other problems. Feel free to tinker with the Caddyfile or the subdomain values in the harbor config file in order to get things running. Maybe in the future there will be examples for common cases.
|
|
97
|
+
|
|
96
98
|
## Commands
|
|
97
99
|
|
|
98
100
|
- `harbor dock`: Generate a new harbor.json file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abyrd9/harbor-cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "A CLI tool for managing local development services with automatic subdomain routing",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -11,14 +11,12 @@
|
|
|
11
11
|
"scripts"
|
|
12
12
|
],
|
|
13
13
|
"scripts": {
|
|
14
|
+
"check": "bunx npm-check -u",
|
|
14
15
|
"build": "tsc",
|
|
15
16
|
"prepare": "bun run build",
|
|
16
17
|
"start": "node dist/index.js",
|
|
17
18
|
"harbor": "node dist/index.js",
|
|
18
|
-
"
|
|
19
|
-
"release": "npm run build && changeset publish",
|
|
20
|
-
"changeset": "changeset",
|
|
21
|
-
"version": "changeset version"
|
|
19
|
+
"release": "bash release.sh"
|
|
22
20
|
},
|
|
23
21
|
"keywords": [
|
|
24
22
|
"cli",
|
|
@@ -42,11 +40,10 @@
|
|
|
42
40
|
"node": ">=18.0.0"
|
|
43
41
|
},
|
|
44
42
|
"dependencies": {
|
|
45
|
-
"@commander-js/extra-typings": "^
|
|
43
|
+
"@commander-js/extra-typings": "^12.1.0"
|
|
46
44
|
},
|
|
47
45
|
"devDependencies": {
|
|
48
|
-
"@
|
|
49
|
-
"@types/node": "^20.10.5",
|
|
46
|
+
"@types/node": "^22.10.2",
|
|
50
47
|
"bun-types": "latest",
|
|
51
48
|
"typescript": "^5.3.3"
|
|
52
49
|
},
|