locadex 1.0.167 → 1.0.169

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 +14 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # locadex
2
2
 
3
+ ## 1.0.169
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`bcb2b91`](https://github.com/generaltranslation/gt/commit/bcb2b91581d1edb134a451f9713c3a899e32282a), [`e88fd39`](https://github.com/generaltranslation/gt/commit/e88fd399683868d5af1fe2b0ba2974fe5b17d7a7)]:
8
+ - gt@2.14.34
9
+
10
+ ## 1.0.168
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies []:
15
+ - gt@2.14.33
16
+
3
17
  ## 1.0.167
4
18
 
5
19
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "locadex",
3
- "version": "1.0.167",
3
+ "version": "1.0.169",
4
4
  "description": "An AI agent for internationalization",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -17,15 +17,14 @@
17
17
  "commander": "^12.1.0",
18
18
  "dotenv": "^16.4.5",
19
19
  "open": "^10.1.1",
20
- "gt": "2.14.32"
20
+ "gt": "2.14.34"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@types/jest": "^29.5.14",
24
24
  "@types/micromatch": "^4.0.9",
25
- "@types/node": ">=20.0.0",
26
- "prettier": "^3.4.2",
25
+ "@types/node": "^22.13.5",
27
26
  "tsx": "^4.16.5",
28
- "typescript": "^5.7.3"
27
+ "typescript": "^5.9.2"
29
28
  },
30
29
  "repository": {
31
30
  "type": "git",
@@ -60,8 +59,9 @@
60
59
  "release:alpha": "pnpm run build:release && pnpm publish --access public --tag alpha",
61
60
  "release:beta": "pnpm run build:release && pnpm publish --access public --tag beta",
62
61
  "release:latest": "pnpm run build:release && pnpm publish --access public --tag latest",
63
- "test": "vitest run",
62
+ "test": "vitest run --passWithNoTests",
64
63
  "test:watch": "vitest",
65
- "sentry:sourcemaps": "sentry-cli sourcemaps inject --org general-translation --project locadex ./dist && sentry-cli sourcemaps upload --org general-translation --project locadex ./dist --release=${npm_package_version}"
64
+ "sentry:sourcemaps": "sentry-cli sourcemaps inject --org general-translation --project locadex ./dist && sentry-cli sourcemaps upload --org general-translation --project locadex ./dist --release=${npm_package_version}",
65
+ "typecheck": "tsc --noEmit"
66
66
  }
67
67
  }