gtx-cli 2.3.6-alpha.3 → 2.3.6

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/CHANGELOG.md +10 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # gtx-cli
2
2
 
3
+ ## 2.3.6
4
+
5
+ ### Patch Changes
6
+
7
+ - [#698](https://github.com/generaltranslation/gt/pull/698) [`9eefc14`](https://github.com/generaltranslation/gt/commit/9eefc14577013fcfa699344c4a950c12d3b3350b) Thanks [@brian-lou](https://github.com/brian-lou)! - Switch monorepo package manager to pnpm (no new features or bugs fixed). Please report issues to https://github.com/generaltranslation/gt
8
+
9
+ - Updated dependencies [[`9eefc14`](https://github.com/generaltranslation/gt/commit/9eefc14577013fcfa699344c4a950c12d3b3350b)]:
10
+ - gt-remark@1.0.2
11
+ - generaltranslation@7.6.4
12
+
3
13
  ## 2.3.5
4
14
 
5
15
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gtx-cli",
3
- "version": "2.3.6-alpha.3",
3
+ "version": "2.3.6",
4
4
  "main": "dist/index.js",
5
5
  "bin": "dist/main.js",
6
6
  "files": [
@@ -91,7 +91,7 @@
91
91
  "unified": "^11.0.5",
92
92
  "unist-util-visit": "^5.0.0",
93
93
  "yaml": "^2.8.0",
94
- "generaltranslation": "7.6.4-alpha.2"
94
+ "generaltranslation": "7.6.4"
95
95
  },
96
96
  "devDependencies": {
97
97
  "@babel/types": "^7.28.4",
@@ -116,7 +116,7 @@
116
116
  },
117
117
  "scripts": {
118
118
  "build": "tsc",
119
- "build:clean": "rm -rf dist && rm tsconfig.tsbuildinfo && pnpm run build",
119
+ "build:clean": "sh ../../scripts/clean.sh && pnpm run build",
120
120
  "build:release": "pnpm run build:clean",
121
121
  "lint": "eslint \"src/**/*.{js,ts}\" \"./**/__tests__/**/*.{js,ts}\"",
122
122
  "lint:fix": "eslint \"src/**/*.{js,ts}\" \"./**/__tests__/**/*.{js,ts}\" --fix",