bgrun 3.12.10 → 3.12.11
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 +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -409,8 +409,8 @@ If no `--config` is specified, bgrun looks for `.config.toml` in the working dir
|
|
|
409
409
|
|
|
410
410
|
bgrun exposes its internals as importable TypeScript functions:
|
|
411
411
|
|
|
412
|
-
> **Packaging note:** the CLI ships from `dist/index.js`,
|
|
413
|
-
>
|
|
412
|
+
> **Packaging note:** the CLI ships from `dist/index.js`, and the Bun programmatic API now resolves through the built `dist/api.js` artifact.
|
|
413
|
+
> The runtime `src/` subset is still temporarily published for compatibility during the migration window, but package consumers should treat `dist/api.js` as the canonical API entry.
|
|
414
414
|
|
|
415
415
|
```bash
|
|
416
416
|
bun add bgrun
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bgrun",
|
|
3
|
-
"version": "3.12.
|
|
3
|
+
"version": "3.12.11",
|
|
4
4
|
"description": "bgrun — A lightweight process manager for Bun",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"main": "./
|
|
6
|
+
"main": "./dist/api.js",
|
|
7
7
|
"exports": {
|
|
8
|
-
".": "./
|
|
8
|
+
".": "./dist/api.js"
|
|
9
9
|
},
|
|
10
10
|
"bin": {
|
|
11
11
|
"bgrun": "dist/index.js"
|