@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.
- package/bin/matrix +3 -3
- 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.
|
|
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, ".
|
|
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
|
|
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-
|
|
9
|
+
"version": "0.0.0-dev-202603070341",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"optionalDependencies": {
|
|
12
|
-
"matrix-
|
|
13
|
-
"matrix-linux-x64": "0.0.0-dev-
|
|
14
|
-
"matrix-
|
|
15
|
-
"matrix-linux-
|
|
16
|
-
"matrix-
|
|
17
|
-
"matrix-linux-x64-baseline
|
|
18
|
-
"matrix-
|
|
19
|
-
"matrix-
|
|
20
|
-
"matrix-
|
|
21
|
-
"matrix-darwin-x64-baseline": "0.0.0-dev-
|
|
22
|
-
"matrix-darwin-x64": "0.0.0-dev-
|
|
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
|
}
|