@gooddata/create-pluggable-module 11.40.0-alpha.5 → 11.40.0-alpha.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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gdc-app-template-name-harness",
|
|
3
|
-
"version": "11.40.0-alpha.
|
|
3
|
+
"version": "11.40.0-alpha.6",
|
|
4
4
|
"private": true,
|
|
5
5
|
"description": "Standalone harness for gdc-app-template-name module",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"dist": "vite build",
|
|
28
28
|
"format-check": "oxfmt --check .",
|
|
29
29
|
"format-write": "oxfmt .",
|
|
30
|
-
"lint": "oxlint . --
|
|
31
|
-
"lint-fix": "oxlint . --
|
|
30
|
+
"lint": "oxlint . --quiet && eslint .",
|
|
31
|
+
"lint-fix": "oxlint . --quiet --fix && eslint . --fix",
|
|
32
32
|
"validate": "npm run lint && npm run format-check"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"@typescript-eslint/eslint-plugin": "8.58.0",
|
|
51
51
|
"@typescript-eslint/parser": "8.58.0",
|
|
52
52
|
"@typescript/native-preview": "7.0.0-dev.20260202.1",
|
|
53
|
-
"@vitejs/plugin-react": "
|
|
53
|
+
"@vitejs/plugin-react": "6.0.2",
|
|
54
54
|
"eslint": "^9.39.2",
|
|
55
55
|
"eslint-import-resolver-typescript": "4.4.4",
|
|
56
56
|
"eslint-plugin-headers": "1.3.3",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gdc-app-template-name-module",
|
|
3
|
-
"version": "11.40.0-alpha.
|
|
3
|
+
"version": "11.40.0-alpha.6",
|
|
4
4
|
"private": true,
|
|
5
5
|
"description": "{applicationTemplateTitle} pluggable application module",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
"dist": "vite build",
|
|
37
37
|
"format-check": "oxfmt --check .",
|
|
38
38
|
"format-write": "oxfmt .",
|
|
39
|
-
"lint": "oxlint . --
|
|
40
|
-
"lint-fix": "oxlint . --
|
|
39
|
+
"lint": "oxlint . --quiet && eslint .",
|
|
40
|
+
"lint-fix": "oxlint . --quiet --fix && eslint . --fix",
|
|
41
41
|
"validate": "npm run lint && npm run format-check"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@gooddata/eslint-config": "workspace:*",
|
|
54
54
|
"@gooddata/oxlint-config": "workspace:*",
|
|
55
|
-
"@module-federation/vite": "
|
|
55
|
+
"@module-federation/vite": "1.16.2",
|
|
56
56
|
"@testing-library/dom": "10.4.1",
|
|
57
57
|
"@testing-library/react": "16.3.0",
|
|
58
58
|
"@types/lodash-es": "^4.17.12",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"@typescript-eslint/eslint-plugin": "8.58.0",
|
|
63
63
|
"@typescript-eslint/parser": "8.58.0",
|
|
64
64
|
"@typescript/native-preview": "7.0.0-dev.20260202.1",
|
|
65
|
-
"@vitejs/plugin-react": "
|
|
65
|
+
"@vitejs/plugin-react": "6.0.2",
|
|
66
66
|
"eslint": "^9.39.2",
|
|
67
67
|
"eslint-import-resolver-typescript": "4.4.4",
|
|
68
68
|
"eslint-plugin-headers": "1.3.3",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"eslint-plugin-react": "7.37.5",
|
|
74
74
|
"eslint-plugin-react-hooks": "5.2.0",
|
|
75
75
|
"eslint-plugin-sonarjs": "3.0.6",
|
|
76
|
-
"happy-dom": "
|
|
76
|
+
"happy-dom": "20.9.0",
|
|
77
77
|
"jiti": "2.6.1",
|
|
78
78
|
"npm-run-all": "^4.1.5",
|
|
79
79
|
"oxfmt": "0.52.0",
|
|
@@ -129,6 +129,8 @@ export default defineConfig(({ mode, command }): UserConfig => {
|
|
|
129
129
|
exposes: {
|
|
130
130
|
"./pluggableApp": "./src/pluggableApp.tsx",
|
|
131
131
|
},
|
|
132
|
+
// vite shared all dependencies by default, so we need to explicitly share nothing
|
|
133
|
+
shared: [],
|
|
132
134
|
// Use idle-based timeout instead of the default 10s absolute deadline,
|
|
133
135
|
// which flakes on loaded CI runners when the transform is slow but progressing.
|
|
134
136
|
moduleParseIdleTimeout: 60,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/create-pluggable-module",
|
|
3
|
-
"version": "11.40.0-alpha.
|
|
3
|
+
"version": "11.40.0-alpha.6",
|
|
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.40.0-alpha.
|
|
54
|
-
"
|
|
55
|
-
"gdc-app-template-name-module": "11.40.0-alpha.
|
|
56
|
-
"
|
|
53
|
+
"@gooddata/eslint-config": "11.40.0-alpha.6",
|
|
54
|
+
"@gooddata/oxlint-config": "11.40.0-alpha.6",
|
|
55
|
+
"gdc-app-template-name-module": "11.40.0-alpha.6",
|
|
56
|
+
"gdc-app-template-name-harness": "11.40.0-alpha.6"
|
|
57
57
|
},
|
|
58
58
|
"engines": {
|
|
59
59
|
"node": ">=24.12.0"
|
|
@@ -68,8 +68,8 @@
|
|
|
68
68
|
"clean": "../../common/scripts/clean-command-state.sh && rm -rf ci dist esm coverage *.log tsconfig.tsbuildinfo",
|
|
69
69
|
"format-check": "oxfmt --check .",
|
|
70
70
|
"format-write": "oxfmt .",
|
|
71
|
-
"lint": "oxlint . --
|
|
72
|
-
"lint-fix": "oxlint . --
|
|
71
|
+
"lint": "oxlint . --quiet && eslint src",
|
|
72
|
+
"lint-fix": "oxlint . --quiet --fix && eslint src --fix",
|
|
73
73
|
"test": "vitest watch",
|
|
74
74
|
"test-once": "vitest run --passWithNoTests",
|
|
75
75
|
"validate": "npm run lint && npm run format-check"
|