gt-next 6.6.3 → 6.6.4

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 CHANGED
@@ -1,5 +1,16 @@
1
1
  # gt-next
2
2
 
3
+ ## 6.6.4
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
+ - @generaltranslation/supported-locales@2.0.14
11
+ - gt-react@10.6.3
12
+ - generaltranslation@7.6.4
13
+
3
14
  ## 6.6.3
4
15
 
5
16
  ### Patch Changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gt-next",
3
- "version": "6.6.3",
3
+ "version": "6.6.4",
4
4
  "description": "A Next.js library for automatic internationalization.",
5
5
  "main": "dist/index.server.js",
6
6
  "peerDependencies": {
@@ -13,28 +13,9 @@
13
13
  "CHANGELOG.md"
14
14
  ],
15
15
  "dependencies": {
16
- "@generaltranslation/supported-locales": "^2.0.13",
17
- "generaltranslation": "^7.5.0",
18
- "gt-react": "^10.6.1"
19
- },
20
- "scripts": {
21
- "patch": "npm version patch",
22
- "transpile": "tsc",
23
- "build": "npm run build:swc-plugin && npm run transpile",
24
- "build:clean": "rm -rf ./swc-plugin/target && rm -rf dist; npm run build",
25
- "build:release": "npm run build:clean",
26
- "build:swc-plugin": "cargo build --release --target wasm32-wasip1 --manifest-path ./swc-plugin/Cargo.toml && node scripts/copy-wasm.js",
27
- "build:no-swc-plugin": "npm run transpile",
28
- "release": "npm run build:clean && npm publish",
29
- "release:alpha": "npm run build:clean && npm publish --tag alpha",
30
- "release:beta": "npm run build:clean && npm publish --tag beta",
31
- "release:latest": "npm run build:clean && npm publish --tag latest",
32
- "lint": "eslint \"src/**/*.{js,ts,tsx}\" \"__tests__/**/*.{js,ts,tsx}\"",
33
- "lint:fix": "eslint \"src/**/*.{js,ts,tsx}\" \"__tests__/**/*.{js,ts,tsx}\" --fix",
34
- "test": "npm run test:js && npm run test:rust",
35
- "test:js": "vitest run",
36
- "test:rust": "cargo test --manifest-path ./swc-plugin/Cargo.toml",
37
- "test:watch": "vitest"
16
+ "@generaltranslation/supported-locales": "2.0.14",
17
+ "generaltranslation": "7.6.4",
18
+ "gt-react": "10.6.3"
38
19
  },
39
20
  "repository": {
40
21
  "type": "git",
@@ -182,5 +163,24 @@
182
163
  "localization",
183
164
  "i18n",
184
165
  "l10n"
185
- ]
186
- }
166
+ ],
167
+ "scripts": {
168
+ "patch": "pnpm version patch",
169
+ "transpile": "tsc",
170
+ "build": "pnpm run build:swc-plugin && pnpm run transpile",
171
+ "build:clean": "rm -rf ./swc-plugin/target && sh ../../scripts/clean.sh && pnpm run build",
172
+ "build:release": "pnpm run build:clean",
173
+ "build:swc-plugin": "cargo build --release --target wasm32-wasip1 --manifest-path ./swc-plugin/Cargo.toml && node scripts/copy-wasm.js",
174
+ "build:no-swc-plugin": "pnpm run transpile",
175
+ "release": "pnpm run build:clean && pnpm publish",
176
+ "release:alpha": "pnpm run build:clean && pnpm publish --tag alpha",
177
+ "release:beta": "pnpm run build:clean && pnpm publish --tag beta",
178
+ "release:latest": "pnpm run build:clean && pnpm publish --tag latest",
179
+ "lint": "eslint \"src/**/*.{js,ts,tsx}\" \"__tests__/**/*.{js,ts,tsx}\"",
180
+ "lint:fix": "eslint \"src/**/*.{js,ts,tsx}\" \"__tests__/**/*.{js,ts,tsx}\" --fix",
181
+ "test": "pnpm run test:js && pnpm run test:rust",
182
+ "test:js": "vitest run",
183
+ "test:rust": "cargo test --manifest-path ./swc-plugin/Cargo.toml",
184
+ "test:watch": "vitest"
185
+ }
186
+ }