@kilocode/cli 7.2.19 → 7.2.21

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 -13
  2. package/postinstall.mjs +1 -1
package/package.json CHANGED
@@ -7,21 +7,21 @@
7
7
  "scripts": {
8
8
  "postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
9
9
  },
10
- "version": "7.2.19",
10
+ "version": "7.2.21",
11
11
  "license": "MIT",
12
12
  "optionalDependencies": {
13
- "@kilocode/cli-linux-x64-musl": "7.2.19",
14
- "@kilocode/cli-darwin-x64": "7.2.19",
15
- "@kilocode/cli-darwin-x64-baseline": "7.2.19",
16
- "@kilocode/cli-windows-arm64": "7.2.19",
17
- "@kilocode/cli-linux-x64-baseline-musl": "7.2.19",
18
- "@kilocode/cli-linux-x64-baseline": "7.2.19",
19
- "@kilocode/cli-linux-arm64": "7.2.19",
20
- "@kilocode/cli-linux-arm64-musl": "7.2.19",
21
- "@kilocode/cli-windows-x64": "7.2.19",
22
- "@kilocode/cli-darwin-arm64": "7.2.19",
23
- "@kilocode/cli-windows-x64-baseline": "7.2.19",
24
- "@kilocode/cli-linux-x64": "7.2.19"
13
+ "@kilocode/cli-linux-x64-musl": "7.2.21",
14
+ "@kilocode/cli-darwin-x64": "7.2.21",
15
+ "@kilocode/cli-darwin-x64-baseline": "7.2.21",
16
+ "@kilocode/cli-windows-arm64": "7.2.21",
17
+ "@kilocode/cli-linux-x64-baseline-musl": "7.2.21",
18
+ "@kilocode/cli-linux-x64-baseline": "7.2.21",
19
+ "@kilocode/cli-linux-arm64": "7.2.21",
20
+ "@kilocode/cli-linux-arm64-musl": "7.2.21",
21
+ "@kilocode/cli-windows-x64": "7.2.21",
22
+ "@kilocode/cli-darwin-arm64": "7.2.21",
23
+ "@kilocode/cli-windows-x64-baseline": "7.2.21",
24
+ "@kilocode/cli-linux-x64": "7.2.21"
25
25
  },
26
26
  "repository": {
27
27
  "type": "git",
package/postinstall.mjs CHANGED
@@ -145,7 +145,7 @@ function main() {
145
145
  }
146
146
 
147
147
  try {
148
- main()
148
+ void main()
149
149
  } catch (error) {
150
150
  console.error("Failed to setup kilo binary:", error.message)
151
151
  process.exit(1)