agent-facets 0.11.0 → 0.12.0

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/bin/facet +8 -1
  2. package/package.json +13 -13
package/bin/facet CHANGED
@@ -18,7 +18,14 @@ function run(target) {
18
18
  }
19
19
 
20
20
  // Resolution #1: Environment variable override
21
- const envPath = process.env.FACET_BIN_PATH
21
+ //
22
+ // `FACET_BIN_OVERRIDE` is the user-controlled override of which binary
23
+ // the launcher executes. When set, every resolution step below is
24
+ // skipped — we run the binary at the override path directly. Self-update
25
+ // is also refused while this is set (see self-update/methods/local-dev.ts),
26
+ // because the override means the user has taken control of binary
27
+ // placement and self-update has no business writing over it.
28
+ const envPath = process.env.FACET_BIN_OVERRIDE
22
29
  if (envPath) {
23
30
  run(envPath)
24
31
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-facets",
3
- "version": "0.11.0",
3
+ "version": "0.12.0",
4
4
  "bin": {
5
5
  "facet": "./bin/facet"
6
6
  },
@@ -8,17 +8,17 @@
8
8
  "postinstall": "node ./postinstall.mjs"
9
9
  },
10
10
  "optionalDependencies": {
11
- "@agent-facets/cli-windows-x64-baseline": "0.11.0",
12
- "@agent-facets/cli-windows-x64": "0.11.0",
13
- "@agent-facets/cli-windows-arm64": "0.11.0",
14
- "@agent-facets/cli-darwin-x64-baseline": "0.11.0",
15
- "@agent-facets/cli-darwin-x64": "0.11.0",
16
- "@agent-facets/cli-darwin-arm64": "0.11.0",
17
- "@agent-facets/cli-linux-x64-baseline-musl": "0.11.0",
18
- "@agent-facets/cli-linux-x64-musl": "0.11.0",
19
- "@agent-facets/cli-linux-arm64-musl": "0.11.0",
20
- "@agent-facets/cli-linux-x64-baseline": "0.11.0",
21
- "@agent-facets/cli-linux-x64": "0.11.0",
22
- "@agent-facets/cli-linux-arm64": "0.11.0"
11
+ "@agent-facets/cli-windows-x64-baseline": "0.12.0",
12
+ "@agent-facets/cli-windows-x64": "0.12.0",
13
+ "@agent-facets/cli-windows-arm64": "0.12.0",
14
+ "@agent-facets/cli-darwin-x64-baseline": "0.12.0",
15
+ "@agent-facets/cli-darwin-x64": "0.12.0",
16
+ "@agent-facets/cli-darwin-arm64": "0.12.0",
17
+ "@agent-facets/cli-linux-x64-baseline-musl": "0.12.0",
18
+ "@agent-facets/cli-linux-x64-musl": "0.12.0",
19
+ "@agent-facets/cli-linux-arm64-musl": "0.12.0",
20
+ "@agent-facets/cli-linux-x64-baseline": "0.12.0",
21
+ "@agent-facets/cli-linux-x64": "0.12.0",
22
+ "@agent-facets/cli-linux-arm64": "0.12.0"
23
23
  }
24
24
  }