@gooddata/create-pluggable-module 11.56.0-alpha.5 → 11.56.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.56.0-alpha.
|
|
3
|
+
"version": "11.56.0-alpha.6",
|
|
4
4
|
"private": true,
|
|
5
5
|
"description": "Standalone harness for gdc-app-template-name module",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"_phase:build": "npm run build-check",
|
|
22
22
|
"_phase:validate": "npm run validate",
|
|
23
23
|
"build": "rm -rf dist && npm-run-all -p dist build-check",
|
|
24
|
-
"build-check": "
|
|
24
|
+
"build-check": "tsc",
|
|
25
25
|
"clean": "../../../../common/scripts/clean-command-state.sh && rm -rf dist *.tgz *.log tsconfig.tsbuildinfo",
|
|
26
26
|
"dev": "vite --force",
|
|
27
27
|
"dist": "vite build",
|
|
@@ -49,7 +49,6 @@
|
|
|
49
49
|
"@types/react-dom": "19.1.7",
|
|
50
50
|
"@typescript-eslint/eslint-plugin": "8.58.0",
|
|
51
51
|
"@typescript-eslint/parser": "8.58.0",
|
|
52
|
-
"@typescript/native-preview": "7.0.0-dev.20260707.2",
|
|
53
52
|
"@vitejs/plugin-react": "6.0.2",
|
|
54
53
|
"eslint": "^9.39.2",
|
|
55
54
|
"eslint-plugin-headers": "1.3.3",
|
|
@@ -65,7 +64,7 @@
|
|
|
65
64
|
"oxlint-tsgolint": "0.15.0",
|
|
66
65
|
"rolldown": "1.0.3",
|
|
67
66
|
"sass": "1.80.0",
|
|
68
|
-
"typescript": "
|
|
67
|
+
"typescript": "7.0.2",
|
|
69
68
|
"vite": "8.0.16"
|
|
70
69
|
}
|
|
71
70
|
}
|
|
@@ -1,43 +1,43 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
|
-
"
|
|
4
|
-
"noFallthroughCasesInSwitch": true,
|
|
5
|
-
"noImplicitOverride": true,
|
|
6
|
-
"noPropertyAccessFromIndexSignature": true,
|
|
7
|
-
"exactOptionalPropertyTypes": false,
|
|
8
|
-
"useUnknownInCatchVariables": true,
|
|
9
|
-
"noUncheckedIndexedAccess": false,
|
|
10
|
-
"noUnusedLocals": true,
|
|
11
|
-
"noUnusedParameters": true,
|
|
3
|
+
"allowJs": true,
|
|
12
4
|
"allowUnreachableCode": false,
|
|
13
5
|
"allowUnusedLabels": false,
|
|
14
|
-
"
|
|
15
|
-
"alwaysStrict": true,
|
|
6
|
+
"exactOptionalPropertyTypes": false,
|
|
16
7
|
"forceConsistentCasingInFileNames": true,
|
|
8
|
+
"jsx": "react-jsx",
|
|
17
9
|
"lib": [
|
|
18
10
|
"es2022",
|
|
19
11
|
"dom",
|
|
20
12
|
"dom.iterable"
|
|
21
13
|
],
|
|
22
|
-
"target": "es2022",
|
|
23
|
-
"skipLibCheck": true,
|
|
24
|
-
"esModuleInterop": true,
|
|
25
|
-
"jsx": "react-jsx",
|
|
26
14
|
"module": "esnext",
|
|
27
15
|
"moduleResolution": "bundler",
|
|
28
16
|
"noEmit": true,
|
|
29
|
-
"
|
|
17
|
+
"noFallthroughCasesInSwitch": true,
|
|
18
|
+
"noImplicitReturns": true,
|
|
19
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
20
|
+
"noUncheckedIndexedAccess": false,
|
|
21
|
+
"noUnusedLocals": true,
|
|
22
|
+
"noUnusedParameters": true,
|
|
23
|
+
"noImplicitOverride": true,
|
|
30
24
|
"outDir": "./dist",
|
|
25
|
+
"paths": {
|
|
26
|
+
"react": [
|
|
27
|
+
"./node_modules/@types/react"
|
|
28
|
+
]
|
|
29
|
+
},
|
|
31
30
|
"resolveJsonModule": true,
|
|
31
|
+
"skipLibCheck": true,
|
|
32
|
+
"strict": true,
|
|
33
|
+
"target": "es2022",
|
|
32
34
|
"typeRoots": [
|
|
33
35
|
"./node_modules/@types",
|
|
34
36
|
"./typings.d.ts"
|
|
35
37
|
],
|
|
36
|
-
"
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
]
|
|
40
|
-
}
|
|
38
|
+
"useUnknownInCatchVariables": true,
|
|
39
|
+
"alwaysStrict": true,
|
|
40
|
+
"esModuleInterop": true
|
|
41
41
|
},
|
|
42
42
|
"files": [
|
|
43
43
|
"./src/app.tsx",
|
|
@@ -55,4 +55,4 @@
|
|
|
55
55
|
"**/temp",
|
|
56
56
|
"**/dist"
|
|
57
57
|
]
|
|
58
|
-
}
|
|
58
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gdc-app-template-name-module",
|
|
3
|
-
"version": "11.56.0-alpha.
|
|
3
|
+
"version": "11.56.0-alpha.6",
|
|
4
4
|
"private": true,
|
|
5
5
|
"description": "{applicationTemplateTitle} pluggable application module",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"_phase:test": "npm run test-once",
|
|
30
30
|
"_phase:validate": "npm run validate",
|
|
31
31
|
"build": "npm-run-all -p build-check dist",
|
|
32
|
-
"build-check": "
|
|
32
|
+
"build-check": "tsc",
|
|
33
33
|
"clean": "../../../../common/scripts/clean-command-state.sh && rm -rf esm dist *.tgz *.log tsconfig.tsbuildinfo",
|
|
34
34
|
"dev": "vite build && npm-run-all --parallel dev:build dev:serve",
|
|
35
35
|
"dev:build": "vite build --watch",
|
|
@@ -63,7 +63,6 @@
|
|
|
63
63
|
"@types/react-dom": "19.1.7",
|
|
64
64
|
"@typescript-eslint/eslint-plugin": "8.58.0",
|
|
65
65
|
"@typescript-eslint/parser": "8.58.0",
|
|
66
|
-
"@typescript/native-preview": "7.0.0-dev.20260707.2",
|
|
67
66
|
"@vitejs/plugin-react": "6.0.2",
|
|
68
67
|
"eslint": "^9.39.2",
|
|
69
68
|
"eslint-plugin-headers": "1.3.3",
|
|
@@ -83,7 +82,7 @@
|
|
|
83
82
|
"react-dom": "19.1.1",
|
|
84
83
|
"rolldown": "1.0.3",
|
|
85
84
|
"sass": "1.80.0",
|
|
86
|
-
"typescript": "
|
|
85
|
+
"typescript": "7.0.2",
|
|
87
86
|
"vite": "8.0.16",
|
|
88
87
|
"vitest": "4.1.8"
|
|
89
88
|
}
|
|
@@ -1,37 +1,37 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
|
-
"
|
|
4
|
-
"noFallthroughCasesInSwitch": true,
|
|
5
|
-
"noImplicitOverride": true,
|
|
6
|
-
"noPropertyAccessFromIndexSignature": true,
|
|
7
|
-
"exactOptionalPropertyTypes": false,
|
|
8
|
-
"useUnknownInCatchVariables": true,
|
|
9
|
-
"noUncheckedIndexedAccess": false,
|
|
10
|
-
"noUnusedLocals": true,
|
|
11
|
-
"noUnusedParameters": true,
|
|
3
|
+
"allowJs": true,
|
|
12
4
|
"allowUnreachableCode": false,
|
|
13
5
|
"allowUnusedLabels": false,
|
|
14
|
-
"
|
|
15
|
-
"
|
|
6
|
+
"declaration": true,
|
|
7
|
+
"exactOptionalPropertyTypes": false,
|
|
16
8
|
"forceConsistentCasingInFileNames": true,
|
|
9
|
+
"importHelpers": true,
|
|
10
|
+
"incremental": false,
|
|
11
|
+
"jsx": "react-jsx",
|
|
17
12
|
"lib": [
|
|
18
13
|
"es2022",
|
|
19
14
|
"dom",
|
|
20
15
|
"dom.iterable"
|
|
21
16
|
],
|
|
22
|
-
"target": "es2022",
|
|
23
|
-
"skipLibCheck": true,
|
|
24
|
-
"esModuleInterop": true,
|
|
25
17
|
"module": "nodenext",
|
|
26
18
|
"moduleResolution": "nodenext",
|
|
27
|
-
"importHelpers": true,
|
|
28
|
-
"incremental": false,
|
|
29
|
-
"resolveJsonModule": true,
|
|
30
|
-
"declaration": true,
|
|
31
|
-
"jsx": "react-jsx",
|
|
32
|
-
"allowJs": true,
|
|
33
19
|
"noEmit": true,
|
|
20
|
+
"noFallthroughCasesInSwitch": true,
|
|
21
|
+
"noImplicitReturns": true,
|
|
22
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
23
|
+
"noUncheckedIndexedAccess": false,
|
|
24
|
+
"noUnusedLocals": true,
|
|
25
|
+
"noUnusedParameters": true,
|
|
26
|
+
"noImplicitOverride": true,
|
|
34
27
|
"outDir": "./dist",
|
|
28
|
+
"resolveJsonModule": true,
|
|
29
|
+
"skipLibCheck": true,
|
|
30
|
+
"strict": true,
|
|
31
|
+
"target": "es2022",
|
|
32
|
+
"useUnknownInCatchVariables": true,
|
|
33
|
+
"alwaysStrict": true,
|
|
34
|
+
"esModuleInterop": true,
|
|
35
35
|
"moduleDetection": "force"
|
|
36
36
|
},
|
|
37
37
|
"files": [
|
|
@@ -51,4 +51,4 @@
|
|
|
51
51
|
"**/temp",
|
|
52
52
|
"**/dist"
|
|
53
53
|
]
|
|
54
|
-
}
|
|
54
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/create-pluggable-module",
|
|
3
|
-
"version": "11.56.0-alpha.
|
|
3
|
+
"version": "11.56.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",
|
|
@@ -33,7 +33,6 @@
|
|
|
33
33
|
"@types/node": "24.12.0",
|
|
34
34
|
"@typescript-eslint/eslint-plugin": "8.58.0",
|
|
35
35
|
"@typescript-eslint/parser": "8.58.0",
|
|
36
|
-
"@typescript/native-preview": "7.0.0-dev.20260707.2",
|
|
37
36
|
"eslint": "^9.39.2",
|
|
38
37
|
"eslint-plugin-headers": "1.3.3",
|
|
39
38
|
"eslint-plugin-import-esm": "1.2.1",
|
|
@@ -45,13 +44,13 @@
|
|
|
45
44
|
"oxlint": "1.57.0",
|
|
46
45
|
"oxlint-tsgolint": "0.15.0",
|
|
47
46
|
"tslib": "2.8.1",
|
|
48
|
-
"typescript": "
|
|
47
|
+
"typescript": "7.0.2",
|
|
49
48
|
"vite": "8.0.16",
|
|
50
49
|
"vitest": "4.1.8",
|
|
51
|
-
"@gooddata/eslint-config": "11.56.0-alpha.
|
|
52
|
-
"@gooddata/oxlint-config": "11.56.0-alpha.
|
|
53
|
-
"gdc-app-template-name-
|
|
54
|
-
"gdc-app-template-name-
|
|
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"
|
|
55
54
|
},
|
|
56
55
|
"engines": {
|
|
57
56
|
"node": ">=24.12.0"
|
|
@@ -61,8 +60,8 @@
|
|
|
61
60
|
"_phase:test": "npm run test-once",
|
|
62
61
|
"_phase:validate": "npm run validate",
|
|
63
62
|
"build": "npm-run-all -p build-check build-ts",
|
|
64
|
-
"build-check": "
|
|
65
|
-
"build-ts": "
|
|
63
|
+
"build-check": "tsc",
|
|
64
|
+
"build-ts": "tsc -p tsconfig.build.json",
|
|
66
65
|
"clean": "../../common/scripts/clean-command-state.sh && rm -rf ci dist esm coverage *.log tsconfig.tsbuildinfo",
|
|
67
66
|
"format-check": "oxfmt --check .",
|
|
68
67
|
"format-write": "oxfmt .",
|