@gooddata/create-pluggable-module 11.40.0-alpha.3 → 11.40.0-alpha.5

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",
3
+ "version": "11.40.0-alpha.5",
4
4
  "private": true,
5
5
  "description": "Standalone harness for gdc-app-template-name module",
6
6
  "license": "UNLICENSED",
@@ -20,8 +20,11 @@
20
20
  "scripts": {
21
21
  "_phase:build": "npm run build-check",
22
22
  "_phase:validate": "npm run validate",
23
+ "build": "rm -rf dist && npm-run-all -p dist build-check",
23
24
  "build-check": "tsgo",
24
25
  "clean": "../../../../common/scripts/clean-command-state.sh && rm -rf dist *.tgz *.log tsconfig.tsbuildinfo",
26
+ "dev": "vite --force",
27
+ "dist": "vite build",
25
28
  "format-check": "oxfmt --check .",
26
29
  "format-write": "oxfmt .",
27
30
  "lint": "oxlint . --type-aware --quiet && eslint .",
@@ -60,11 +63,12 @@
60
63
  "eslint-plugin-sonarjs": "3.0.6",
61
64
  "jiti": "2.6.1",
62
65
  "npm-run-all": "^4.1.5",
63
- "oxfmt": "0.45.0",
64
- "oxlint": "^1.43.0",
65
- "oxlint-tsgolint": "0.11.4",
66
- "rolldown": "1.0.0-rc.9",
66
+ "oxfmt": "0.52.0",
67
+ "oxlint": "1.51.0",
68
+ "oxlint-tsgolint": "0.15.0",
69
+ "rolldown": "1.0.3",
70
+ "sass": "1.70.0",
67
71
  "typescript": "5.9.3",
68
- "vite": "8.0.0"
72
+ "vite": "8.0.16"
69
73
  }
70
74
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gdc-app-template-name-module",
3
- "version": "11.40.0-alpha.3",
3
+ "version": "11.40.0-alpha.5",
4
4
  "private": true,
5
5
  "description": "{applicationTemplateTitle} pluggable application module",
6
6
  "license": "UNLICENSED",
@@ -27,8 +27,13 @@
27
27
  "scripts": {
28
28
  "_phase:build": "npm run build-check",
29
29
  "_phase:validate": "npm run validate",
30
+ "build": "npm-run-all -p build-check dist",
30
31
  "build-check": "tsgo",
31
32
  "clean": "../../../../common/scripts/clean-command-state.sh && rm -rf esm dist *.tgz *.log tsconfig.tsbuildinfo",
33
+ "dev": "vite build && npm-run-all --parallel dev:build dev:serve",
34
+ "dev:build": "vite build --watch",
35
+ "dev:serve": "vite preview",
36
+ "dist": "vite build",
32
37
  "format-check": "oxfmt --check .",
33
38
  "format-write": "oxfmt .",
34
39
  "lint": "oxlint . --type-aware --quiet && eslint .",
@@ -71,14 +76,15 @@
71
76
  "happy-dom": "18.0.1",
72
77
  "jiti": "2.6.1",
73
78
  "npm-run-all": "^4.1.5",
74
- "oxfmt": "0.45.0",
75
- "oxlint": "^1.43.0",
76
- "oxlint-tsgolint": "0.11.4",
79
+ "oxfmt": "0.52.0",
80
+ "oxlint": "1.51.0",
81
+ "oxlint-tsgolint": "0.15.0",
77
82
  "react": "19.1.1",
78
83
  "react-dom": "19.1.1",
79
- "rolldown": "1.0.0-rc.9",
84
+ "rolldown": "1.0.3",
85
+ "sass": "1.70.0",
80
86
  "typescript": "5.9.3",
81
- "vite": "8.0.0",
82
- "vitest": "4.1.0"
87
+ "vite": "8.0.16",
88
+ "vitest": "4.1.8"
83
89
  }
84
90
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/create-pluggable-module",
3
- "version": "11.40.0-alpha.3",
3
+ "version": "11.40.0-alpha.5",
4
4
  "description": "Scaffolder for GoodData pluggable applications. Invoked via `npm init @gooddata/pluggable-module`.",
5
5
  "license": "MIT",
6
6
  "author": "GoodData Corporation",
@@ -43,17 +43,17 @@
43
43
  "eslint-plugin-no-barrel-files": "1.2.2",
44
44
  "eslint-plugin-sonarjs": "3.0.6",
45
45
  "npm-run-all": "^4.1.5",
46
- "oxfmt": "0.45.0",
47
- "oxlint": "^1.43.0",
48
- "oxlint-tsgolint": "0.11.4",
46
+ "oxfmt": "0.52.0",
47
+ "oxlint": "1.51.0",
48
+ "oxlint-tsgolint": "0.15.0",
49
49
  "tslib": "2.8.1",
50
50
  "typescript": "5.9.3",
51
- "vite": "8.0.0",
52
- "vitest": "4.1.0",
53
- "@gooddata/oxlint-config": "11.40.0-alpha.3",
54
- "@gooddata/eslint-config": "11.40.0-alpha.3",
55
- "gdc-app-template-name-harness": "11.40.0-alpha.3",
56
- "gdc-app-template-name-module": "11.40.0-alpha.3"
51
+ "vite": "8.0.16",
52
+ "vitest": "4.1.8",
53
+ "@gooddata/eslint-config": "11.40.0-alpha.5",
54
+ "gdc-app-template-name-harness": "11.40.0-alpha.5",
55
+ "gdc-app-template-name-module": "11.40.0-alpha.5",
56
+ "@gooddata/oxlint-config": "11.40.0-alpha.5"
57
57
  },
58
58
  "engines": {
59
59
  "node": ">=24.12.0"