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.
Files changed (2) hide show
  1. package/README.md +2 -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`, while the Bun programmatic API currently resolves through the published runtime `src/` modules (starting at `src/api.ts`) for compatibility.
413
- > A future migration toward `dist/api.js` is planned, but it will be staged so package consumers are not broken by an abrupt export flip.
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.10",
3
+ "version": "3.12.11",
4
4
  "description": "bgrun — A lightweight process manager for Bun",
5
5
  "type": "module",
6
- "main": "./src/api.ts",
6
+ "main": "./dist/api.js",
7
7
  "exports": {
8
- ".": "./src/api.ts"
8
+ ".": "./dist/api.js"
9
9
  },
10
10
  "bin": {
11
11
  "bgrun": "dist/index.js"