gtx-cli 2.5.30-alpha.1 → 2.5.30-alpha.2

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 (1) hide show
  1. package/package.json +7 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gtx-cli",
3
- "version": "2.5.30-alpha.1",
3
+ "version": "2.5.30-alpha.2",
4
4
  "main": "dist/index.js",
5
5
  "bin": "dist/router.js",
6
6
  "files": [
@@ -133,13 +133,12 @@
133
133
  "build": "tsc && pnpm run build:exe",
134
134
  "build:clean": "sh ../../scripts/clean.sh && pnpm run build",
135
135
  "build:release": "pnpm run build:clean",
136
- "build:exe": "mkdir -p binaries && pnpm run build:exe:all",
137
- "build:exe:all": "pnpm run build:exe:darwin-x64 && pnpm run build:exe:darwin-arm64 && pnpm run build:exe:linux-x64 && pnpm run build:exe:linux-arm64 && pnpm run build:exe:windows-x64",
138
- "build:exe:darwin-x64": "bun build src/main.ts --compile --target=bun-darwin-x64 --outfile=binaries/gtx-cli-darwin-x64 --external \"\"",
139
- "build:exe:darwin-arm64": "bun build src/main.ts --compile --target=bun-darwin-arm64 --outfile=binaries/gtx-cli-darwin-arm64 --external \"\"",
140
- "build:exe:linux-x64": "bun build src/main.ts --compile --target=bun-linux-x64 --outfile=binaries/gtx-cli-linux-x64 --external \"\"",
141
- "build:exe:linux-arm64": "bun build src/main.ts --compile --target=bun-linux-arm64 --outfile=binaries/gtx-cli-linux-arm64 --external \"\"",
142
- "build:exe:windows-x64": "bun build src/main.ts --compile --target=bun-windows-x64 --outfile=binaries/gtx-cli-win32-x64.exe --external \"\"",
136
+ "build:exe": "sh scripts/build-exe.sh all",
137
+ "build:exe:darwin-x64": "sh scripts/build-exe.sh darwin-x64",
138
+ "build:exe:darwin-arm64": "sh scripts/build-exe.sh darwin-arm64",
139
+ "build:exe:linux-x64": "sh scripts/build-exe.sh linux-x64",
140
+ "build:exe:linux-arm64": "sh scripts/build-exe.sh linux-arm64",
141
+ "build:exe:windows-x64": "sh scripts/build-exe.sh windows-x64",
143
142
  "lint": "eslint \"src/**/*.{js,ts}\" \"./**/__tests__/**/*.{js,ts}\"",
144
143
  "lint:fix": "eslint \"src/**/*.{js,ts}\" \"./**/__tests__/**/*.{js,ts}\" --fix",
145
144
  "test": "vitest run --config=./vitest.config.ts",