@trackunit/iris-app 1.11.48 → 1.11.50
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,21 @@
|
|
|
1
|
+
## 1.11.50 (2026-02-25)
|
|
2
|
+
|
|
3
|
+
### 🧱 Updated Dependencies
|
|
4
|
+
|
|
5
|
+
- Updated iris-app-build-utilities to 1.12.49
|
|
6
|
+
- Updated iris-app-webpack-plugin to 1.11.49
|
|
7
|
+
- Updated iris-app-api to 1.14.44
|
|
8
|
+
- Updated react-test-setup to 1.8.44
|
|
9
|
+
- Updated shared-utils to 1.13.44
|
|
10
|
+
|
|
11
|
+
## 1.11.49 (2026-02-25)
|
|
12
|
+
|
|
13
|
+
### 🧱 Updated Dependencies
|
|
14
|
+
|
|
15
|
+
- Updated iris-app-build-utilities to 1.12.48
|
|
16
|
+
- Updated iris-app-webpack-plugin to 1.11.48
|
|
17
|
+
- Updated iris-app-api to 1.14.43
|
|
18
|
+
|
|
1
19
|
## 1.11.48 (2026-02-23)
|
|
2
20
|
|
|
3
21
|
### 🧱 Updated Dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.50",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"generators": "./generators.json",
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"@npmcli/arborist": "^9.1.9",
|
|
32
32
|
"webpack-bundle-analyzer": "^4.8.0",
|
|
33
33
|
"win-ca": "^3.5.1",
|
|
34
|
-
"@trackunit/shared-utils": "1.13.
|
|
35
|
-
"@trackunit/iris-app-api": "1.14.
|
|
36
|
-
"@trackunit/iris-app-webpack-plugin": "1.11.
|
|
34
|
+
"@trackunit/shared-utils": "1.13.44",
|
|
35
|
+
"@trackunit/iris-app-api": "1.14.44",
|
|
36
|
+
"@trackunit/iris-app-webpack-plugin": "1.11.49",
|
|
37
37
|
"tslib": "^2.6.2",
|
|
38
38
|
"@clack/prompts": "^1.0.0"
|
|
39
39
|
},
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { Tree } from "@nx/devkit";
|
|
2
|
-
/**
|
|
3
|
-
* Add a dev dependency to the package.json
|
|
4
|
-
*
|
|
5
|
-
* @param { Tree } host the nx tree
|
|
6
|
-
* @param { string } packageName the package name
|
|
7
|
-
* @param { string } version the package version
|
|
8
|
-
*/
|
|
9
|
-
export declare const addDevDependency: (host: Tree, packageName: string, version?: string) => void;
|
|
10
|
-
/**
|
|
11
|
-
* Add a dependency to the package.json
|
|
12
|
-
*
|
|
13
|
-
* @param { Tree } host the nx tree
|
|
14
|
-
* @param { string } packageName the package name
|
|
15
|
-
* @param { string } version the package version
|
|
16
|
-
*/
|
|
17
|
-
export declare const addDependency: (host: Tree, packageName: string, version?: string) => void;
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.addDependency = exports.addDevDependency = void 0;
|
|
4
|
-
const devkit_1 = require("@nx/devkit");
|
|
5
|
-
/**
|
|
6
|
-
* Add a dev dependency to the package.json
|
|
7
|
-
*
|
|
8
|
-
* @param { Tree } host the nx tree
|
|
9
|
-
* @param { string } packageName the package name
|
|
10
|
-
* @param { string } version the package version
|
|
11
|
-
*/
|
|
12
|
-
const addDevDependency = (host, packageName, version = "*") => {
|
|
13
|
-
const packageJsonPath = "package.json";
|
|
14
|
-
const currentPackageJson = (0, devkit_1.readJson)(host, packageJsonPath);
|
|
15
|
-
const isPackageInstalled = currentPackageJson.devDependencies?.[packageName] !== undefined;
|
|
16
|
-
if (!isPackageInstalled) {
|
|
17
|
-
const modifiedPackageJson = {
|
|
18
|
-
...currentPackageJson,
|
|
19
|
-
devDependencies: {
|
|
20
|
-
...currentPackageJson.devDependencies,
|
|
21
|
-
[packageName]: version,
|
|
22
|
-
},
|
|
23
|
-
};
|
|
24
|
-
host.write(packageJsonPath, JSON.stringify(modifiedPackageJson, null, 2));
|
|
25
|
-
}
|
|
26
|
-
};
|
|
27
|
-
exports.addDevDependency = addDevDependency;
|
|
28
|
-
/**
|
|
29
|
-
* Add a dependency to the package.json
|
|
30
|
-
*
|
|
31
|
-
* @param { Tree } host the nx tree
|
|
32
|
-
* @param { string } packageName the package name
|
|
33
|
-
* @param { string } version the package version
|
|
34
|
-
*/
|
|
35
|
-
const addDependency = (host, packageName, version = "*") => {
|
|
36
|
-
const packageJsonPath = "package.json";
|
|
37
|
-
const currentPackageJson = (0, devkit_1.readJson)(host, packageJsonPath);
|
|
38
|
-
const isPackageInstalled = currentPackageJson.dependencies?.[packageName] !== undefined;
|
|
39
|
-
if (!isPackageInstalled) {
|
|
40
|
-
const modifiedPackageJson = {
|
|
41
|
-
...currentPackageJson,
|
|
42
|
-
dependencies: {
|
|
43
|
-
...currentPackageJson.dependencies,
|
|
44
|
-
[packageName]: version,
|
|
45
|
-
},
|
|
46
|
-
};
|
|
47
|
-
host.write(packageJsonPath, JSON.stringify(modifiedPackageJson, null, 2));
|
|
48
|
-
}
|
|
49
|
-
};
|
|
50
|
-
exports.addDependency = addDependency;
|
|
51
|
-
//# sourceMappingURL=addDevDependency.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"addDevDependency.js","sourceRoot":"","sources":["../../../../../../libs/iris-app-sdk/iris-app/src/utils/addDevDependency.ts"],"names":[],"mappings":";;;AAAA,uCAA4C;AAE5C;;;;;;GAMG;AACI,MAAM,gBAAgB,GAAG,CAAC,IAAU,EAAE,WAAmB,EAAE,OAAO,GAAG,GAAG,EAAE,EAAE;IACjF,MAAM,eAAe,GAAG,cAAc,CAAC;IACvC,MAAM,kBAAkB,GAAG,IAAA,iBAAQ,EAAC,IAAI,EAAE,eAAe,CAAC,CAAC;IAC3D,MAAM,kBAAkB,GAAG,kBAAkB,CAAC,eAAe,EAAE,CAAC,WAAW,CAAC,KAAK,SAAS,CAAC;IAE3F,IAAI,CAAC,kBAAkB,EAAE,CAAC;QACxB,MAAM,mBAAmB,GAAG;YAC1B,GAAG,kBAAkB;YACrB,eAAe,EAAE;gBACf,GAAG,kBAAkB,CAAC,eAAe;gBACrC,CAAC,WAAW,CAAC,EAAE,OAAO;aACvB;SACF,CAAC;QAEF,IAAI,CAAC,KAAK,CAAC,eAAe,EAAE,IAAI,CAAC,SAAS,CAAC,mBAAmB,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;IAC5E,CAAC;AACH,CAAC,CAAC;AAhBW,QAAA,gBAAgB,oBAgB3B;AAEF;;;;;;GAMG;AACI,MAAM,aAAa,GAAG,CAAC,IAAU,EAAE,WAAmB,EAAE,OAAO,GAAG,GAAG,EAAE,EAAE;IAC9E,MAAM,eAAe,GAAG,cAAc,CAAC;IACvC,MAAM,kBAAkB,GAAG,IAAA,iBAAQ,EAAC,IAAI,EAAE,eAAe,CAAC,CAAC;IAC3D,MAAM,kBAAkB,GAAG,kBAAkB,CAAC,YAAY,EAAE,CAAC,WAAW,CAAC,KAAK,SAAS,CAAC;IAExF,IAAI,CAAC,kBAAkB,EAAE,CAAC;QACxB,MAAM,mBAAmB,GAAG;YAC1B,GAAG,kBAAkB;YACrB,YAAY,EAAE;gBACZ,GAAG,kBAAkB,CAAC,YAAY;gBAClC,CAAC,WAAW,CAAC,EAAE,OAAO;aACvB;SACF,CAAC;QAEF,IAAI,CAAC,KAAK,CAAC,eAAe,EAAE,IAAI,CAAC,SAAS,CAAC,mBAAmB,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;IAC5E,CAAC;AACH,CAAC,CAAC;AAhBW,QAAA,aAAa,iBAgBxB","sourcesContent":["import { readJson, Tree } from \"@nx/devkit\";\n\n/**\n * Add a dev dependency to the package.json\n *\n * @param { Tree } host the nx tree\n * @param { string } packageName the package name\n * @param { string } version the package version\n */\nexport const addDevDependency = (host: Tree, packageName: string, version = \"*\") => {\n const packageJsonPath = \"package.json\";\n const currentPackageJson = readJson(host, packageJsonPath);\n const isPackageInstalled = currentPackageJson.devDependencies?.[packageName] !== undefined;\n\n if (!isPackageInstalled) {\n const modifiedPackageJson = {\n ...currentPackageJson,\n devDependencies: {\n ...currentPackageJson.devDependencies,\n [packageName]: version,\n },\n };\n\n host.write(packageJsonPath, JSON.stringify(modifiedPackageJson, null, 2));\n }\n};\n\n/**\n * Add a dependency to the package.json\n *\n * @param { Tree } host the nx tree\n * @param { string } packageName the package name\n * @param { string } version the package version\n */\nexport const addDependency = (host: Tree, packageName: string, version = \"*\") => {\n const packageJsonPath = \"package.json\";\n const currentPackageJson = readJson(host, packageJsonPath);\n const isPackageInstalled = currentPackageJson.dependencies?.[packageName] !== undefined;\n\n if (!isPackageInstalled) {\n const modifiedPackageJson = {\n ...currentPackageJson,\n dependencies: {\n ...currentPackageJson.dependencies,\n [packageName]: version,\n },\n };\n\n host.write(packageJsonPath, JSON.stringify(modifiedPackageJson, null, 2));\n }\n};\n"]}
|