@trackunit/iris-app 1.15.4 → 1.15.6-alpha-c57027e60fa.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/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 1.15.5 (2026-03-30)
2
+
3
+ ### 🧱 Updated Dependencies
4
+
5
+ - Updated iris-app-build-utilities to 1.13.18
6
+ - Updated iris-app-api to 1.15.16
7
+ - Updated react-test-setup to 1.8.82
8
+ - Updated shared-utils to 1.13.83
9
+
1
10
  ## 1.15.4 (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.6-alpha-c57027e60fa.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": "5.9.3",
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.82",
27
- "@trackunit/iris-app-api": "1.15.15",
26
+ "@trackunit/shared-utils": "1.13.84-alpha-c57027e60fa.0",
27
+ "@trackunit/iris-app-api": "1.15.17-alpha-c57027e60fa.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.54.0",
95
- typescript: "5.9.3",
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
- tree.write(".npmrc", "engine-strict=true");
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);