create-unisphere-project 3.0.0 → 3.1.0
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.
- package/dist/CHANGELOG.md +15 -0
- package/dist/_templates/unisphere-project/.prettierignore +2 -1
- package/dist/_templates/unisphere-project/gitignore +3 -0
- package/dist/_templates/unisphere-project/jest.config.ts +2 -2
- package/dist/_templates/unisphere-project/nx.json +6 -1
- package/dist/_templates/unisphere-project/package-lock.json +1897 -3157
- package/dist/_templates/unisphere-project/package.json +18 -17
- package/dist/package.json +1 -1
- package/package.json +1 -1
|
@@ -16,33 +16,34 @@
|
|
|
16
16
|
"@babel/core": "^7.14.5",
|
|
17
17
|
"@babel/preset-react": "^7.14.5",
|
|
18
18
|
"@changesets/cli": "2.29.7",
|
|
19
|
-
"@nx/eslint": "22.1
|
|
20
|
-
"@nx/eslint-plugin": "22.1
|
|
21
|
-
"@nx/jest": "22.1
|
|
22
|
-
"@nx/js": "22.1
|
|
23
|
-
"@nx/react": "22.1
|
|
24
|
-
"@nx/rollup": "22.1
|
|
25
|
-
"@nx/vite": "22.1
|
|
26
|
-
"@nx/
|
|
27
|
-
"@nx/
|
|
28
|
-
"@nx/
|
|
19
|
+
"@nx/eslint": "22.7.1",
|
|
20
|
+
"@nx/eslint-plugin": "22.7.1",
|
|
21
|
+
"@nx/jest": "22.7.1",
|
|
22
|
+
"@nx/js": "22.7.1",
|
|
23
|
+
"@nx/react": "22.7.1",
|
|
24
|
+
"@nx/rollup": "22.7.1",
|
|
25
|
+
"@nx/vite": "22.7.1",
|
|
26
|
+
"@nx/vitest": "22.7.1",
|
|
27
|
+
"@nx/web": "22.7.1",
|
|
28
|
+
"@nx/webpack": "22.7.1",
|
|
29
|
+
"@nx/workspace": "22.7.1",
|
|
29
30
|
"@rollup/plugin-alias": "^5.1.0",
|
|
30
31
|
"@rollup/plugin-replace": "^5.0.7",
|
|
31
32
|
"@rollup/plugin-terser": "^0.4.4",
|
|
32
33
|
"@rollup/plugin-url": "^8.0.2",
|
|
33
34
|
"@svgr/rollup": "^8.1.0",
|
|
34
35
|
"@svgr/webpack": "^8.0.1",
|
|
35
|
-
"@swc-node/register": "
|
|
36
|
-
"@swc/cli": "0.
|
|
37
|
-
"@swc/core": "
|
|
38
|
-
"@swc/helpers": "0.5.
|
|
36
|
+
"@swc-node/register": "1.11.1",
|
|
37
|
+
"@swc/cli": "0.7.10",
|
|
38
|
+
"@swc/core": "1.15.32",
|
|
39
|
+
"@swc/helpers": "0.5.21",
|
|
39
40
|
"@testing-library/react": "16.1.0",
|
|
40
41
|
"@types/jest": "30.0.0",
|
|
41
42
|
"@types/react": "19.2.9",
|
|
42
43
|
"@types/react-dom": "19.2.3",
|
|
43
44
|
"@typescript-eslint/eslint-plugin": "^7.3.0",
|
|
44
45
|
"@typescript-eslint/parser": "^7.3.0",
|
|
45
|
-
"@unisphere/nx": "4.
|
|
46
|
+
"@unisphere/nx": "4.4.0",
|
|
46
47
|
"@vitejs/plugin-react": "4.7.0",
|
|
47
48
|
"@vitest/coverage-v8": "^1.0.4",
|
|
48
49
|
"@vitest/ui": "^1.3.1",
|
|
@@ -61,7 +62,7 @@
|
|
|
61
62
|
"jiti": "2.4.2",
|
|
62
63
|
"jsdom": "~22.1.0",
|
|
63
64
|
"local-web-server": "^5.3.3",
|
|
64
|
-
"nx": "22.1
|
|
65
|
+
"nx": "22.7.1",
|
|
65
66
|
"patch-package": "^8.0.0",
|
|
66
67
|
"prettier": "^2.6.2",
|
|
67
68
|
"rollup": "^4.14.0",
|
|
@@ -92,7 +93,7 @@
|
|
|
92
93
|
"@kaltura/ds-react-utils": "^12.8.0",
|
|
93
94
|
"@mui/icons-material": "7.3.7",
|
|
94
95
|
"@mui/material": "7.3.7",
|
|
95
|
-
"@unisphere/cli": "
|
|
96
|
+
"@unisphere/cli": "5.0.1",
|
|
96
97
|
"@unisphere/core": "1",
|
|
97
98
|
"@unisphere/notifications-core": "1",
|
|
98
99
|
"@unisphere/notifications-runtime-react": "1",
|
package/dist/package.json
CHANGED