@zendero/runctl 0.1.0 → 0.1.1
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 -3
- package/package.json +4 -4
- package/scripts/install-global.sh +1 -1
package/README.md
CHANGED
|
@@ -22,10 +22,10 @@ pnpm add -D runctl # or npm install -D / yarn add -D
|
|
|
22
22
|
pnpm add -g runctl # or npm install -g
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
-
**One-liner (from GitHub
|
|
25
|
+
**One-liner (from GitHub):**
|
|
26
26
|
|
|
27
27
|
```bash
|
|
28
|
-
curl -fsSL https://raw.githubusercontent.com/DoctorKhan/
|
|
28
|
+
curl -fsSL https://raw.githubusercontent.com/DoctorKhan/runctl/main/scripts/install-global.sh | bash
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
---
|
|
@@ -89,4 +89,4 @@ Add scripts to your `package.json`:
|
|
|
89
89
|
|
|
90
90
|
[`examples/consumer-package.json`](examples/consumer-package.json) · [`docs/vercel-and-env.md`](docs/vercel-and-env.md) · [`examples/env.manifest.example`](examples/env.manifest.example)
|
|
91
91
|
|
|
92
|
-
**Develop this repo:** `pnpm install` → `./run.sh
|
|
92
|
+
**Develop this repo:** `pnpm install` → `./run.sh ports`
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zendero/runctl",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Picks a free port, runs your dev server in the background, and keeps PID + port state in .run/ so projects don't collide.",
|
|
5
5
|
"author": "DoctorKhan",
|
|
6
|
-
"homepage": "https://github.com/DoctorKhan/
|
|
7
|
-
"bugs": "https://github.com/DoctorKhan/
|
|
6
|
+
"homepage": "https://github.com/DoctorKhan/runctl#readme",
|
|
7
|
+
"bugs": "https://github.com/DoctorKhan/runctl/issues",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "https://github.com/DoctorKhan/
|
|
10
|
+
"url": "https://github.com/DoctorKhan/runctl.git"
|
|
11
11
|
},
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"keywords": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env sh
|
|
2
2
|
# Install runctl globally (needs Node 18+ and npm or pnpm).
|
|
3
|
-
# curl -fsSL https://raw.githubusercontent.com/DoctorKhan/
|
|
3
|
+
# curl -fsSL https://raw.githubusercontent.com/DoctorKhan/runctl/main/scripts/install-global.sh | bash
|
|
4
4
|
# Registry: RUNCTL_PACKAGE=runctl curl -fsSL … | bash
|
|
5
5
|
# Scoped: RUNCTL_PACKAGE=@your-org/runctl curl -fsSL … | bash
|
|
6
6
|
set -eu
|