@trackunit/iris-app 1.21.3 → 1.21.5
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 +19 -0
- package/package.json +3 -3
- package/src/generators/create/generator.js +7 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
## 1.21.5 (2026-05-19)
|
|
2
|
+
|
|
3
|
+
### 🧱 Updated Dependencies
|
|
4
|
+
|
|
5
|
+
- Updated iris-app-build-utilities to 1.18.4
|
|
6
|
+
- Updated iris-app-api to 1.20.4
|
|
7
|
+
- Updated react-vite-test-setup to 0.0.5
|
|
8
|
+
- Updated shared-utils to 1.15.4
|
|
9
|
+
|
|
10
|
+
## 1.21.4 (2026-05-18)
|
|
11
|
+
|
|
12
|
+
### 🩹 Fixes
|
|
13
|
+
|
|
14
|
+
- add Iris app build dependency generation ([#23295](https://github.com/Trackunit/manager/pull/23295))
|
|
15
|
+
|
|
16
|
+
### ❤️ Thank You
|
|
17
|
+
|
|
18
|
+
- Aravind K Namboothiri @akn-trackunit
|
|
19
|
+
|
|
1
20
|
## 1.21.3 (2026-05-15)
|
|
2
21
|
|
|
3
22
|
### 🧱 Updated Dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app",
|
|
3
|
-
"version": "1.21.
|
|
3
|
+
"version": "1.21.5",
|
|
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": "1.20.
|
|
26
|
+
"@trackunit/shared-utils": "1.15.4",
|
|
27
|
+
"@trackunit/iris-app-api": "1.20.4",
|
|
28
28
|
"tslib": "^2.6.2",
|
|
29
29
|
"@clack/prompts": "^1.0.0",
|
|
30
30
|
"@npm/types": "^1.0.2",
|
|
@@ -113,6 +113,13 @@ const IrisAppGenerator = async function (tree, options) {
|
|
|
113
113
|
targets: {
|
|
114
114
|
build: {
|
|
115
115
|
executor: "@trackunit/iris-app-sdk-vite:build",
|
|
116
|
+
dependsOn: [
|
|
117
|
+
{
|
|
118
|
+
target: "build",
|
|
119
|
+
params: "forward",
|
|
120
|
+
dependencies: true,
|
|
121
|
+
},
|
|
122
|
+
],
|
|
116
123
|
options: {
|
|
117
124
|
viteConfig: `${normalizedOptions.projectRoot}/vite.config.ts`,
|
|
118
125
|
outputPath: `dist/${normalizedOptions.projectRoot}`,
|