@trackunit/iris-app 1.15.3 → 1.15.4-alpha-3d825eabffe.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app",
|
|
3
|
-
"version": "1.15.
|
|
3
|
+
"version": "1.15.4-alpha-3d825eabffe.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"generators": "./generators.json",
|
|
@@ -17,14 +17,14 @@
|
|
|
17
17
|
"string-ts": "^2.0.0",
|
|
18
18
|
"ts-morph": "^20.0.0",
|
|
19
19
|
"@phenomnomnominal/tsquery": "^6.1.3",
|
|
20
|
-
"typescript": "
|
|
20
|
+
"typescript": "6.0.2",
|
|
21
21
|
"@nx/js": "22.4.4",
|
|
22
22
|
"@nx/eslint": "22.4.4",
|
|
23
23
|
"@nx/react": "22.4.4",
|
|
24
24
|
"@npmcli/arborist": "^9.1.9",
|
|
25
25
|
"win-ca": "^3.5.1",
|
|
26
|
-
"@trackunit/shared-utils": "1.13.
|
|
27
|
-
"@trackunit/iris-app-api": "1.15.
|
|
26
|
+
"@trackunit/shared-utils": "1.13.82-alpha-3d825eabffe.0",
|
|
27
|
+
"@trackunit/iris-app-api": "1.15.15-alpha-3d825eabffe.0",
|
|
28
28
|
"tslib": "^2.6.2",
|
|
29
29
|
"@clack/prompts": "^1.0.0",
|
|
30
30
|
"@npm/types": "^1.0.2",
|
|
@@ -74,6 +74,9 @@ const IrisAppGenerator = async function (tree, options) {
|
|
|
74
74
|
};
|
|
75
75
|
(0, devkit_1.addDependenciesToPackageJson)(tree, {
|
|
76
76
|
...tuDependencies,
|
|
77
|
+
"@apollo/client": "3.14.1",
|
|
78
|
+
graphql: "16.10.0",
|
|
79
|
+
"@tanstack/react-router": "1.114.29",
|
|
77
80
|
tslib: "2.4.0",
|
|
78
81
|
react: "19.0.0",
|
|
79
82
|
"react-dom": "19.0.0",
|
|
@@ -91,8 +94,8 @@ const IrisAppGenerator = async function (tree, options) {
|
|
|
91
94
|
"eslint-plugin-react": "7.37.5",
|
|
92
95
|
"eslint-plugin-import": "2.32.0",
|
|
93
96
|
"eslint-plugin-jsx-a11y": "6.10.2",
|
|
94
|
-
"typescript-eslint": "8.
|
|
95
|
-
typescript: "
|
|
97
|
+
"typescript-eslint": "8.57.2",
|
|
98
|
+
typescript: "6.0.2",
|
|
96
99
|
});
|
|
97
100
|
(0, devkit_1.updateJson)(tree, "package.json", packageJson => {
|
|
98
101
|
packageJson.overrides = {
|
|
@@ -147,7 +150,9 @@ const IrisAppGenerator = async function (tree, options) {
|
|
|
147
150
|
});
|
|
148
151
|
addFiles(tree, normalizedOptions, packageJsonLocally);
|
|
149
152
|
// enforcing engine versions specified in package.json
|
|
150
|
-
|
|
153
|
+
// legacy-peer-deps is needed because @typescript-eslint/parser has not yet
|
|
154
|
+
// widened its peer dep range to include TypeScript 6.
|
|
155
|
+
tree.write(".npmrc", "engine-strict=true\nlegacy-peer-deps=true\n");
|
|
151
156
|
await (0, devkit_1.formatFiles)(tree);
|
|
152
157
|
return () => {
|
|
153
158
|
(0, devkit_1.installPackagesTask)(tree, true);
|