@trackunit/iris-app 1.15.4-alpha-3d825eabffe.0 → 1.15.4
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 1.15.4 (2026-03-27)
|
|
2
|
+
|
|
3
|
+
### 🧱 Updated Dependencies
|
|
4
|
+
|
|
5
|
+
- Updated iris-app-build-utilities to 1.13.17
|
|
6
|
+
- Updated iris-app-api to 1.15.15
|
|
7
|
+
- Updated react-test-setup to 1.8.81
|
|
8
|
+
- Updated shared-utils to 1.13.82
|
|
9
|
+
|
|
1
10
|
## 1.15.3 (2026-03-27)
|
|
2
11
|
|
|
3
12
|
### 🧱 Updated Dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app",
|
|
3
|
-
"version": "1.15.4
|
|
3
|
+
"version": "1.15.4",
|
|
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": "5.9.3",
|
|
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.82
|
|
27
|
-
"@trackunit/iris-app-api": "1.15.15
|
|
26
|
+
"@trackunit/shared-utils": "1.13.82",
|
|
27
|
+
"@trackunit/iris-app-api": "1.15.15",
|
|
28
28
|
"tslib": "^2.6.2",
|
|
29
29
|
"@clack/prompts": "^1.0.0",
|
|
30
30
|
"@npm/types": "^1.0.2",
|
|
@@ -74,9 +74,6 @@ 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",
|
|
80
77
|
tslib: "2.4.0",
|
|
81
78
|
react: "19.0.0",
|
|
82
79
|
"react-dom": "19.0.0",
|
|
@@ -94,8 +91,8 @@ const IrisAppGenerator = async function (tree, options) {
|
|
|
94
91
|
"eslint-plugin-react": "7.37.5",
|
|
95
92
|
"eslint-plugin-import": "2.32.0",
|
|
96
93
|
"eslint-plugin-jsx-a11y": "6.10.2",
|
|
97
|
-
"typescript-eslint": "8.
|
|
98
|
-
typescript: "
|
|
94
|
+
"typescript-eslint": "8.54.0",
|
|
95
|
+
typescript: "5.9.3",
|
|
99
96
|
});
|
|
100
97
|
(0, devkit_1.updateJson)(tree, "package.json", packageJson => {
|
|
101
98
|
packageJson.overrides = {
|
|
@@ -150,9 +147,7 @@ const IrisAppGenerator = async function (tree, options) {
|
|
|
150
147
|
});
|
|
151
148
|
addFiles(tree, normalizedOptions, packageJsonLocally);
|
|
152
149
|
// enforcing engine versions specified in package.json
|
|
153
|
-
|
|
154
|
-
// widened its peer dep range to include TypeScript 6.
|
|
155
|
-
tree.write(".npmrc", "engine-strict=true\nlegacy-peer-deps=true\n");
|
|
150
|
+
tree.write(".npmrc", "engine-strict=true");
|
|
156
151
|
await (0, devkit_1.formatFiles)(tree);
|
|
157
152
|
return () => {
|
|
158
153
|
(0, devkit_1.installPackagesTask)(tree, true);
|