@gooddata/create-pluggable-module 11.56.0-alpha.6 → 11.56.0-alpha.8

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gdc-app-template-name-harness",
3
- "version": "11.56.0-alpha.6",
3
+ "version": "11.56.0-alpha.8",
4
4
  "private": true,
5
5
  "description": "Standalone harness for gdc-app-template-name module",
6
6
  "license": "UNLICENSED",
@@ -63,7 +63,7 @@
63
63
  "oxlint": "1.57.0",
64
64
  "oxlint-tsgolint": "0.15.0",
65
65
  "rolldown": "1.0.3",
66
- "sass": "1.80.0",
66
+ "sass": "1.100.0",
67
67
  "typescript": "7.0.2",
68
68
  "vite": "8.0.16"
69
69
  }
@@ -25,8 +25,18 @@ rushx build
25
25
  ## Adding translations
26
26
 
27
27
  1. Add keys to `src/translations/en-US.json` with `{ "text": "...", "crowdinContext": "..." }` format.
28
- 2. Copy the new keys to all other locale JSON files (they start as en-US copies; translators update them later).
29
- 3. The `translations.ts` async loader and `Record<ILocale, ...>` type ensure every locale is covered at build time.
28
+ 2. Do **not** add the keys to the other locale JSON files. They are owned by the
29
+ post-merge Crowdin pipeline, which overwrites any manual edit on its next
30
+ download. A key that exists only in `en-US.json` is the expected state of a
31
+ feature PR; the translation PR adds the other locales, usually within the
32
+ next business day. See `sdk/dev_docs/localisation.md` and
33
+ `.claude/l10n-workflow.md`.
34
+ 3. Make sure the module's `en-US.json` is listed in the root `crowdin.yml`, or
35
+ its strings are never uploaded for translation.
36
+ 4. The `translations.ts` async loader and `Record<ILocale, ...>` type ensure a
37
+ JSON file exists for every locale at build time. They do not check that each
38
+ file contains every key — missing keys fall back to the message id until the
39
+ pipeline fills them.
30
40
 
31
41
  ## Localization enforcement
32
42
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gdc-app-template-name-module",
3
- "version": "11.56.0-alpha.6",
3
+ "version": "11.56.0-alpha.8",
4
4
  "private": true,
5
5
  "description": "{applicationTemplateTitle} pluggable application module",
6
6
  "license": "UNLICENSED",
@@ -81,7 +81,7 @@
81
81
  "react": "19.1.1",
82
82
  "react-dom": "19.1.1",
83
83
  "rolldown": "1.0.3",
84
- "sass": "1.80.0",
84
+ "sass": "1.100.0",
85
85
  "typescript": "7.0.2",
86
86
  "vite": "8.0.16",
87
87
  "vitest": "4.1.8"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/create-pluggable-module",
3
- "version": "11.56.0-alpha.6",
3
+ "version": "11.56.0-alpha.8",
4
4
  "description": "Scaffolder for GoodData pluggable applications. Invoked via `npm init @gooddata/pluggable-module`.",
5
5
  "license": "MIT",
6
6
  "author": "GoodData Corporation",
@@ -47,10 +47,10 @@
47
47
  "typescript": "7.0.2",
48
48
  "vite": "8.0.16",
49
49
  "vitest": "4.1.8",
50
- "@gooddata/eslint-config": "11.56.0-alpha.6",
51
- "@gooddata/oxlint-config": "11.56.0-alpha.6",
52
- "gdc-app-template-name-harness": "11.56.0-alpha.6",
53
- "gdc-app-template-name-module": "11.56.0-alpha.6"
50
+ "@gooddata/eslint-config": "11.56.0-alpha.8",
51
+ "@gooddata/oxlint-config": "11.56.0-alpha.8",
52
+ "gdc-app-template-name-module": "11.56.0-alpha.8",
53
+ "gdc-app-template-name-harness": "11.56.0-alpha.8"
54
54
  },
55
55
  "engines": {
56
56
  "node": ">=24.12.0"