@hostclube/atuscode 1.16.3 → 1.16.4

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/package.json +13 -6
  2. package/postinstall.mjs +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hostclube/atuscode",
3
- "version": "1.16.3",
3
+ "version": "1.16.4",
4
4
  "description": "atus code - AI coding agent by hostclube",
5
5
  "license": "MIT",
6
6
  "bin": {
@@ -19,11 +19,18 @@
19
19
  "x64"
20
20
  ],
21
21
  "optionalDependencies": {
22
- "@hostclube/atuscode-windows-x64": "1.16.3",
23
- "@hostclube/atuscode-darwin-arm64": "1.16.3",
24
- "@hostclube/atuscode-darwin-x64": "1.16.3",
25
- "@hostclube/atuscode-linux-x64": "1.16.3",
26
- "@hostclube/atuscode-linux-arm64": "1.16.3"
22
+ "@hostclube/atuscode-linux-arm64": "1.16.4",
23
+ "@hostclube/atuscode-linux-x64": "1.16.4",
24
+ "@hostclube/atuscode-linux-x64-baseline": "1.16.4",
25
+ "@hostclube/atuscode-linux-arm64-musl": "1.16.4",
26
+ "@hostclube/atuscode-linux-x64-musl": "1.16.4",
27
+ "@hostclube/atuscode-linux-x64-baseline-musl": "1.16.4",
28
+ "@hostclube/atuscode-darwin-arm64": "1.16.4",
29
+ "@hostclube/atuscode-darwin-x64": "1.16.4",
30
+ "@hostclube/atuscode-darwin-x64-baseline": "1.16.4",
31
+ "@hostclube/atuscode-windows-arm64": "1.16.4",
32
+ "@hostclube/atuscode-windows-x64": "1.16.4",
33
+ "@hostclube/atuscode-windows-x64-baseline": "1.16.4"
27
34
  },
28
35
  "repository": {
29
36
  "type": "git",
package/postinstall.mjs CHANGED
@@ -127,7 +127,7 @@ function installPackage(name) {
127
127
  const version = packageJson.optionalDependencies?.[name]
128
128
  if (!version) return
129
129
 
130
- const temp = fs.mkdtempSync(path.join(os.tmpdir(), "opencode-install-"))
130
+ const temp = fs.mkdtempSync(path.join(os.tmpdir(), "atuscode-install-"))
131
131
  try {
132
132
  const result = childProcess.spawnSync(
133
133
  "npm",
@@ -175,7 +175,7 @@ function main() {
175
175
  }
176
176
 
177
177
  throw new Error(
178
- `It seems your package manager failed to install the right opencode CLI package. Try manually installing ${packageNames()
178
+ `It seems your package manager failed to install the right atuscode CLI package. Try manually installing ${packageNames()
179
179
  .map((name) => JSON.stringify(name))
180
180
  .join(" or ")}.`,
181
181
  )