nuwaxcode 1.1.31 → 1.1.34

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 +6 -6
  2. package/script/build.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
- "version": "1.1.31",
3
+ "version": "1.1.34",
4
4
  "name": "nuwaxcode",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -116,10 +116,10 @@
116
116
  "zod-to-json-schema": "3.24.5"
117
117
  },
118
118
  "optionalDependencies": {
119
- "nuwaxcode-darwin-arm64": "1.1.25",
120
- "nuwaxcode-darwin-x64": "1.1.25",
121
- "nuwaxcode-linux-arm64": "1.1.25",
122
- "nuwaxcode-linux-x64": "1.1.25",
123
- "nuwaxcode-windows-x64": "1.1.25"
119
+ "nuwaxcode-darwin-arm64": "1.1.34",
120
+ "nuwaxcode-darwin-x64": "1.1.34",
121
+ "nuwaxcode-linux-arm64": "1.1.34",
122
+ "nuwaxcode-linux-x64": "1.1.34",
123
+ "nuwaxcode-windows-x64": "1.1.34"
124
124
  }
125
125
  }
package/script/build.ts CHANGED
@@ -145,7 +145,7 @@ for (const item of targets) {
145
145
  },
146
146
  entrypoints: ["./src/index.ts", parserWorker, workerPath],
147
147
  define: {
148
- OPENCODE_VERSION: `'${Script.version}'`,
148
+ OPENCODE_VERSION: `'${pkg.version}'`,
149
149
  OTUI_TREE_SITTER_WORKER_PATH: bunfsRoot + workerRelativePath,
150
150
  OPENCODE_WORKER_PATH: workerPath,
151
151
  OPENCODE_CHANNEL: `'${Script.channel}'`,
@@ -158,7 +158,7 @@ for (const item of targets) {
158
158
  JSON.stringify(
159
159
  {
160
160
  name,
161
- version: "1.1.26",
161
+ version: pkg.version,
162
162
  os: [item.os],
163
163
  cpu: [item.arch],
164
164
  },