gtx-cli 2.5.31 → 2.5.33-bin.0
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/CHANGELOG.md +12 -0
- package/binaries/gtx-cli-darwin-arm64 +0 -0
- package/binaries/gtx-cli-darwin-x64 +0 -0
- package/binaries/gtx-cli-linux-arm64 +0 -0
- package/binaries/gtx-cli-linux-x64 +0 -0
- package/binaries/gtx-cli-win32-x64.exe +0 -0
- package/dist/bin/bin-main.js +0 -0
- package/dist/generated/version.d.ts +1 -1
- package/dist/generated/version.js +1 -1
- package/dist/main.js +0 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# gtx-cli
|
|
2
2
|
|
|
3
|
+
## 2.5.33
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#901](https://github.com/generaltranslation/gt/pull/901) [`6320663`](https://github.com/generaltranslation/gt/commit/6320663e032aa4b8a337e08423a5be7215260e87) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - fix: release error
|
|
8
|
+
|
|
9
|
+
## 2.5.32
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#899](https://github.com/generaltranslation/gt/pull/899) [`94edf07`](https://github.com/generaltranslation/gt/commit/94edf07fb5a05130da967ffb1e76577667e9dff0) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - fix: bin release
|
|
14
|
+
|
|
3
15
|
## 2.5.31
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/bin/bin-main.js
CHANGED
|
File without changes
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const PACKAGE_VERSION = "2.5.
|
|
1
|
+
export declare const PACKAGE_VERSION = "2.5.33-bin.0";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// This file is auto-generated. Do not edit manually.
|
|
2
|
-
export const PACKAGE_VERSION = '2.5.
|
|
2
|
+
export const PACKAGE_VERSION = '2.5.33-bin.0';
|
package/dist/main.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gtx-cli",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.33-bin.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
|
-
"bin": "dist/main.js",
|
|
5
|
+
"bin": "dist/bin/bin-main.js",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist",
|
|
8
8
|
"binaries",
|
|
@@ -131,7 +131,7 @@
|
|
|
131
131
|
},
|
|
132
132
|
"scripts": {
|
|
133
133
|
"build": "node scripts/generate-version.js && tsc",
|
|
134
|
-
"build:clean": "sh ../../scripts/clean.sh && pnpm restore
|
|
134
|
+
"build:clean": "sh ../../scripts/clean.sh && pnpm bin:restore && rm -rf binaries && pnpm run build",
|
|
135
135
|
"build:release": "pnpm run build:clean",
|
|
136
136
|
"build:bin": "node scripts/generate-version.js && tsc && sh scripts/build-exe.sh all",
|
|
137
137
|
"build:bin:clean": "sh ../../scripts/clean.sh && rm -rf binaries && pnpm run build:bin",
|
|
@@ -147,11 +147,11 @@
|
|
|
147
147
|
"test:watch": "vitest --config=./vitest.config.ts",
|
|
148
148
|
"release": "pnpm run release:normal && pnpm run release:bin",
|
|
149
149
|
"release:normal": "pnpm run build:clean && pnpm publish",
|
|
150
|
-
"release:bin": "pnpm run prep
|
|
150
|
+
"release:bin": "pnpm run bin:prep && pnpm run build:bin:clean && pnpm publish --tag bin --no-git-checks && pnpm run bin:restore && pnpm run build:clean",
|
|
151
151
|
"release:alpha": "pnpm run build:clean && pnpm publish --tag alpha",
|
|
152
152
|
"release:beta": "pnpm run build:clean && pnpm publish --tag beta",
|
|
153
153
|
"release:latest": "pnpm run build:clean && pnpm publish --tag latest",
|
|
154
|
-
"
|
|
155
|
-
"
|
|
154
|
+
"bin:restore": "node scripts/restore-package-json.js",
|
|
155
|
+
"bin:prep": "node scripts/prepare-binary-release.js"
|
|
156
156
|
}
|
|
157
157
|
}
|