@trackunit/iris-app 1.12.25-alpha-ae1ff73fc64.0 → 1.13.1
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 +15 -0
- package/package.json +4 -4
- package/src/generators/create/generator.js +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## 1.13.1 (2026-03-17)
|
|
2
|
+
|
|
3
|
+
### 🧱 Updated Dependencies
|
|
4
|
+
|
|
5
|
+
- Updated iris-app-build-utilities to 1.13.1
|
|
6
|
+
- Updated react-test-setup to 1.8.69
|
|
7
|
+
- Updated shared-utils to 1.13.69
|
|
8
|
+
|
|
9
|
+
## 1.13.0 (2026-03-16)
|
|
10
|
+
|
|
11
|
+
### 🧱 Updated Dependencies
|
|
12
|
+
|
|
13
|
+
- Updated iris-app-build-utilities to 1.13.0
|
|
14
|
+
- Updated iris-app-api to 1.15.0
|
|
15
|
+
|
|
1
16
|
## 1.12.24 (2026-03-16)
|
|
2
17
|
|
|
3
18
|
### 🧱 Updated Dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.13.1",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"generators": "./generators.json",
|
|
@@ -17,7 +17,7 @@
|
|
|
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/devkit": "22.4.4",
|
|
22
22
|
"@nx/js": "22.4.4",
|
|
23
23
|
"@nx/eslint": "22.4.4",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"nx": "22.4.4",
|
|
26
26
|
"@npmcli/arborist": "^9.1.9",
|
|
27
27
|
"win-ca": "^3.5.1",
|
|
28
|
-
"@trackunit/shared-utils": "1.13.69
|
|
29
|
-
"@trackunit/iris-app-api": "1.
|
|
28
|
+
"@trackunit/shared-utils": "1.13.69",
|
|
29
|
+
"@trackunit/iris-app-api": "1.15.0",
|
|
30
30
|
"tslib": "^2.6.2",
|
|
31
31
|
"@clack/prompts": "^1.0.0",
|
|
32
32
|
"@npm/types": "^1.0.2"
|
|
@@ -91,8 +91,8 @@ const IrisAppGenerator = async function (tree, options) {
|
|
|
91
91
|
"eslint-plugin-react": "7.37.5",
|
|
92
92
|
"eslint-plugin-import": "2.32.0",
|
|
93
93
|
"eslint-plugin-jsx-a11y": "6.10.2",
|
|
94
|
-
"typescript-eslint": "8.
|
|
95
|
-
typescript: "
|
|
94
|
+
"typescript-eslint": "8.54.0",
|
|
95
|
+
typescript: "5.9.3",
|
|
96
96
|
});
|
|
97
97
|
(0, devkit_1.updateJson)(tree, "package.json", packageJson => {
|
|
98
98
|
packageJson.overrides = {
|
|
@@ -147,7 +147,7 @@ const IrisAppGenerator = async function (tree, options) {
|
|
|
147
147
|
});
|
|
148
148
|
addFiles(tree, normalizedOptions, packageJsonLocally);
|
|
149
149
|
// enforcing engine versions specified in package.json
|
|
150
|
-
tree.write(".npmrc", "engine-strict=true
|
|
150
|
+
tree.write(".npmrc", "engine-strict=true");
|
|
151
151
|
await (0, devkit_1.formatFiles)(tree);
|
|
152
152
|
return () => {
|
|
153
153
|
(0, devkit_1.installPackagesTask)(tree, true);
|