@trackunit/iris-app 2.0.10 → 2.0.12
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 +22 -0
- package/package.json +3 -3
- package/src/generators/preset/generator.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
## 2.0.12 (2026-06-08)
|
|
2
|
+
|
|
3
|
+
### 🧱 Updated Dependencies
|
|
4
|
+
|
|
5
|
+
- Updated iris-app-build-utilities to 2.0.11
|
|
6
|
+
- Updated iris-app-api to 2.0.11
|
|
7
|
+
- Updated react-vite-test-setup to 0.0.20
|
|
8
|
+
- Updated shared-utils to 1.15.19
|
|
9
|
+
|
|
10
|
+
## 2.0.11 (2026-06-08)
|
|
11
|
+
|
|
12
|
+
### 🩹 Fixes
|
|
13
|
+
|
|
14
|
+
- only add ignoreDeprecations to external workspace base config ([d77daee18cd](https://github.com/Trackunit/manager/commit/d77daee18cd))
|
|
15
|
+
- add ignoreDeprecations to template instead of removing compilerOptions ([ca1374feab3](https://github.com/Trackunit/manager/commit/ca1374feab3))
|
|
16
|
+
- **iris-app:** remove compilerOptions from tsconfig.app.json template ([7c478b6df6b](https://github.com/Trackunit/manager/commit/7c478b6df6b))
|
|
17
|
+
|
|
18
|
+
### ❤️ Thank You
|
|
19
|
+
|
|
20
|
+
- Christian Sandbeck @csk-trackunit
|
|
21
|
+
- Cursor Agent @cursoragent
|
|
22
|
+
|
|
1
23
|
## 2.0.10 (2026-06-08)
|
|
2
24
|
|
|
3
25
|
### 🧱 Updated Dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.12",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"generators": "./generators.json",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"@nx/react": "22.6.5",
|
|
24
24
|
"@npmcli/arborist": "^9.1.9",
|
|
25
25
|
"win-ca": "^3.5.1",
|
|
26
|
-
"@trackunit/shared-utils": "1.15.
|
|
27
|
-
"@trackunit/iris-app-api": "2.0.
|
|
26
|
+
"@trackunit/shared-utils": "1.15.19",
|
|
27
|
+
"@trackunit/iris-app-api": "2.0.11",
|
|
28
28
|
"tslib": "^2.6.2",
|
|
29
29
|
"@clack/prompts": "^1.0.0",
|
|
30
30
|
"@npm/types": "^1.0.2",
|
|
@@ -38,6 +38,7 @@ async function presetGenerator(tree, options) {
|
|
|
38
38
|
if (!tsconfig.compilerOptions) {
|
|
39
39
|
tsconfig.compilerOptions = {};
|
|
40
40
|
}
|
|
41
|
+
tsconfig.compilerOptions.ignoreDeprecations = "6.0";
|
|
41
42
|
tsconfig.compilerOptions.esModuleInterop = true;
|
|
42
43
|
tsconfig.compilerOptions.resolveJsonModule = true;
|
|
43
44
|
tsconfig.compilerOptions.moduleResolution = "bundler";
|