@matrix-ai/matrix 0.0.0-dev-202602240333 → 0.0.0-dev-202603070341

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/matrix +3 -3
  2. package/package.json +12 -12
package/bin/matrix CHANGED
@@ -17,7 +17,7 @@ function run(target) {
17
17
  process.exit(code)
18
18
  }
19
19
 
20
- const envPath = process.env.OPENCODE_BIN_PATH
20
+ const envPath = process.env.MATRIX_BIN_PATH
21
21
  if (envPath) {
22
22
  run(envPath)
23
23
  }
@@ -26,7 +26,7 @@ const scriptPath = fs.realpathSync(__filename)
26
26
  const scriptDir = path.dirname(scriptPath)
27
27
 
28
28
  //
29
- const cached = path.join(scriptDir, ".opencode")
29
+ const cached = path.join(scriptDir, ".matrix")
30
30
  if (fs.existsSync(cached)) {
31
31
  run(cached)
32
32
  }
@@ -169,7 +169,7 @@ function findBinary(startDir) {
169
169
  const resolved = findBinary(scriptDir)
170
170
  if (!resolved) {
171
171
  console.error(
172
- "It seems that your package manager failed to install the right version of the opencode CLI for your platform. You can try manually installing " +
172
+ "It seems that your package manager failed to install the right version of the matrix CLI for your platform. You can try manually installing " +
173
173
  names.map((n) => `\"${n}\"`).join(" or ") +
174
174
  " package",
175
175
  )
package/package.json CHANGED
@@ -6,19 +6,19 @@
6
6
  "scripts": {
7
7
  "postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
8
8
  },
9
- "version": "0.0.0-dev-202602240333",
9
+ "version": "0.0.0-dev-202603070341",
10
10
  "license": "MIT",
11
11
  "optionalDependencies": {
12
- "matrix-windows-x64-baseline": "0.0.0-dev-202602240333",
13
- "matrix-linux-x64": "0.0.0-dev-202602240333",
14
- "matrix-linux-x64-baseline": "0.0.0-dev-202602240333",
15
- "matrix-linux-arm64-musl": "0.0.0-dev-202602240333",
16
- "matrix-linux-x64-musl": "0.0.0-dev-202602240333",
17
- "matrix-linux-x64-baseline-musl": "0.0.0-dev-202602240333",
18
- "matrix-darwin-arm64": "0.0.0-dev-202602240333",
19
- "matrix-windows-x64": "0.0.0-dev-202602240333",
20
- "matrix-linux-arm64": "0.0.0-dev-202602240333",
21
- "matrix-darwin-x64-baseline": "0.0.0-dev-202602240333",
22
- "matrix-darwin-x64": "0.0.0-dev-202602240333"
12
+ "matrix-linux-arm64": "0.0.0-dev-202603070341",
13
+ "matrix-linux-x64": "0.0.0-dev-202603070341",
14
+ "matrix-windows-x64": "0.0.0-dev-202603070341",
15
+ "matrix-linux-x64-musl": "0.0.0-dev-202603070341",
16
+ "matrix-windows-x64-baseline": "0.0.0-dev-202603070341",
17
+ "matrix-linux-x64-baseline": "0.0.0-dev-202603070341",
18
+ "matrix-linux-arm64-musl": "0.0.0-dev-202603070341",
19
+ "matrix-linux-x64-baseline-musl": "0.0.0-dev-202603070341",
20
+ "matrix-darwin-arm64": "0.0.0-dev-202603070341",
21
+ "matrix-darwin-x64-baseline": "0.0.0-dev-202603070341",
22
+ "matrix-darwin-x64": "0.0.0-dev-202603070341"
23
23
  }
24
24
  }