@gooddata/create-pluggable-module 11.51.0-alpha.0 → 11.51.0-alpha.2

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.51.0-alpha.0",
3
+ "version": "11.51.0-alpha.2",
4
4
  "private": true,
5
5
  "description": "Standalone harness for gdc-app-template-name module",
6
6
  "license": "UNLICENSED",
@@ -1,7 +1,6 @@
1
1
  // (C) 2026 GoodData Corporation
2
2
 
3
3
  export declare global {
4
- export const SDK_BACKEND: "tiger";
5
4
  export const PRODUCTION: boolean;
6
5
  export const TIGER_API_TOKEN: string | undefined;
7
6
 
@@ -52,7 +52,6 @@ export default defineConfig(({ mode }): UserConfig => {
52
52
  base: isProduction ? "/{applicationTemplateScope}/" : "/",
53
53
  publicDir: false,
54
54
  define: {
55
- SDK_BACKEND: JSON.stringify("tiger"),
56
55
  TIGER_API_TOKEN: isProduction ? undefined : JSON.stringify(env["TIGER_API_TOKEN"]),
57
56
  PRODUCTION: JSON.stringify(isProduction),
58
57
  APP_TEMPLATE_REMOTE_URL: isProduction
@@ -61,7 +60,6 @@ export default defineConfig(({ mode }): UserConfig => {
61
60
  ? JSON.stringify(env["APP_TEMPLATE_REMOTE_URL"])
62
61
  : "undefined",
63
62
  "process.env": JSON.stringify({}),
64
- REACT_APP_SDK_BACKEND: JSON.stringify("TIGER"),
65
63
  REACT_APP_API_TOKEN: isProduction ? undefined : JSON.stringify(env["TIGER_API_TOKEN"]),
66
64
  REACT_APP_IN_AIO: JSON.stringify(false),
67
65
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gdc-app-template-name-module",
3
- "version": "11.51.0-alpha.0",
3
+ "version": "11.51.0-alpha.2",
4
4
  "private": true,
5
5
  "description": "{applicationTemplateTitle} pluggable application module",
6
6
  "license": "UNLICENSED",
@@ -97,7 +97,6 @@ export default defineConfig(({ mode, command }): UserConfig => {
97
97
  ],
98
98
  },
99
99
  define: {
100
- REACT_APP_SDK_BACKEND: JSON.stringify("TIGER"),
101
100
  PRODUCTION: JSON.stringify(mode === "production"),
102
101
  "process.env": JSON.stringify({}),
103
102
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/create-pluggable-module",
3
- "version": "11.51.0-alpha.0",
3
+ "version": "11.51.0-alpha.2",
4
4
  "description": "Scaffolder for GoodData pluggable applications. Invoked via `npm init @gooddata/pluggable-module`.",
5
5
  "license": "MIT",
6
6
  "author": "GoodData Corporation",
@@ -50,10 +50,10 @@
50
50
  "typescript": "5.9.3",
51
51
  "vite": "8.0.16",
52
52
  "vitest": "4.1.8",
53
- "@gooddata/eslint-config": "11.51.0-alpha.0",
54
- "@gooddata/oxlint-config": "11.51.0-alpha.0",
55
- "gdc-app-template-name-harness": "11.51.0-alpha.0",
56
- "gdc-app-template-name-module": "11.51.0-alpha.0"
53
+ "@gooddata/eslint-config": "11.51.0-alpha.2",
54
+ "gdc-app-template-name-module": "11.51.0-alpha.2",
55
+ "@gooddata/oxlint-config": "11.51.0-alpha.2",
56
+ "gdc-app-template-name-harness": "11.51.0-alpha.2"
57
57
  },
58
58
  "engines": {
59
59
  "node": ">=24.12.0"