@opencode-compat/profile 0.1.2 → 0.1.3

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/dist/detect.js CHANGED
@@ -48,11 +48,11 @@ function binaryHint(options) {
48
48
  }
49
49
  function envPrefixHint(env) {
50
50
  // Strong host-specific prefixes first (avoid OPENCODE_* false positives from compat tooling).
51
- if (hasPrefix(env, "MIMOCODE_"))
51
+ if (env.MIMOCODE || hasPrefix(env, "MIMOCODE_"))
52
52
  return "mimo";
53
- if (hasPrefix(env, "KILO_"))
53
+ if (env.KILO || hasPrefix(env, "KILO_"))
54
54
  return "kilo";
55
- if (hasPrefix(env, "ZCODE_"))
55
+ if (env.ZCODE || hasPrefix(env, "ZCODE_"))
56
56
  return "zcode";
57
57
  // OPENCODE_* alone is weak — only count when not also running under compat tooling only.
58
58
  // Prefer config/binary for OpenCode; still allow OPENCODE_CONFIG_DIR as a hint.
package/dist/version.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  /** Package / OCP train version — kept in sync by `bun scripts/bump-version.ts`. */
2
- export declare const VERSION: "0.1.2";
3
- export declare const OCP_VERSION: "0.1.2";
2
+ export declare const VERSION: "0.1.3";
3
+ export declare const OCP_VERSION: "0.1.3";
4
4
  //# sourceMappingURL=version.d.ts.map
package/dist/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  /** Package / OCP train version — kept in sync by `bun scripts/bump-version.ts`. */
2
- export const VERSION = "0.1.2";
3
- export const OCP_VERSION = "0.1.2";
2
+ export const VERSION = "0.1.3";
3
+ export const OCP_VERSION = "0.1.3";
4
4
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opencode-compat/profile",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "HostProfile types and draft profiles for OCP hosts",
5
5
  "type": "module",
6
6
  "license": "MPL-2.0",