@trackunit/iris-app-build-utilities 1.12.60 → 1.12.63
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,23 @@
|
|
|
1
|
+
## 1.12.63 (2026-03-06)
|
|
2
|
+
|
|
3
|
+
### 🧱 Updated Dependencies
|
|
4
|
+
|
|
5
|
+
- Updated iris-app-api to 1.14.57
|
|
6
|
+
- Updated shared-utils to 1.13.55
|
|
7
|
+
|
|
8
|
+
## 1.12.62 (2026-03-06)
|
|
9
|
+
|
|
10
|
+
### 🧱 Updated Dependencies
|
|
11
|
+
|
|
12
|
+
- Updated iris-app-api to 1.14.56
|
|
13
|
+
- Updated shared-utils to 1.13.54
|
|
14
|
+
|
|
15
|
+
## 1.12.61 (2026-03-06)
|
|
16
|
+
|
|
17
|
+
### 🧱 Updated Dependencies
|
|
18
|
+
|
|
19
|
+
- Updated iris-app-api to 1.14.55
|
|
20
|
+
|
|
1
21
|
## 1.12.60 (2026-03-05)
|
|
2
22
|
|
|
3
23
|
### 🧱 Updated Dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app-build-utilities",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.63",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"repository": "https://github.com/Trackunit/manager",
|
|
6
6
|
"engines": {
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
"tslib": "^2.6.2",
|
|
16
16
|
"csp-header": "^5.2.1",
|
|
17
17
|
"@rspack/core": "1.6.7",
|
|
18
|
-
"@trackunit/iris-app-api": "1.14.
|
|
18
|
+
"@trackunit/iris-app-api": "1.14.57",
|
|
19
19
|
"@nx/devkit": "22.4.4",
|
|
20
|
-
"@trackunit/shared-utils": "1.13.
|
|
20
|
+
"@trackunit/shared-utils": "1.13.55",
|
|
21
21
|
"http-proxy-middleware": "3.0.5",
|
|
22
22
|
"pacote": "^21.0.4",
|
|
23
23
|
"semver": "7.5.4"
|
package/src/getCopyPatterns.js
CHANGED
|
@@ -53,7 +53,7 @@ const getWidgetExtensionIconPaths = (manifest) => {
|
|
|
53
53
|
});
|
|
54
54
|
};
|
|
55
55
|
/**
|
|
56
|
-
* Generates copy patterns for serverside extensions (LIFECYCLE_EXTENSION,
|
|
56
|
+
* Generates copy patterns for serverside extensions (LIFECYCLE_EXTENSION, SERVERSIDE_API_EXTENSION).
|
|
57
57
|
* These are only copied in production mode.
|
|
58
58
|
*/
|
|
59
59
|
const getServersideExtensionPatterns = (options) => {
|
|
@@ -24,7 +24,7 @@ const updateExtensions = (extensions) => {
|
|
|
24
24
|
if (extension.type !== "IRIS_APP_SETTINGS_EXTENSION" &&
|
|
25
25
|
extension.type !== "WIDGET_EXTENSION" &&
|
|
26
26
|
extension.type !== "LIFECYCLE_EXTENSION" &&
|
|
27
|
-
extension.type !== "
|
|
27
|
+
extension.type !== "SERVERSIDE_API_EXTENSION" &&
|
|
28
28
|
extension.menuItem.name) {
|
|
29
29
|
extension.menuItem.name =
|
|
30
30
|
(0, irisAppTranslationUtils_1.convertTranslationKeyIfNeeded)(extension.menuItem.name, extension.sourceRoot) || "Unknown";
|
package/src/serverlessUtils.d.ts
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
export declare const SERVERLESS_PORT_MIN = 22230;
|
|
7
7
|
export declare const SERVERLESS_PORT_MAX = 22239;
|
|
8
8
|
/** Serverless extension type constant */
|
|
9
|
-
export declare const SERVERLESS_EXTENSION_TYPE: "
|
|
9
|
+
export declare const SERVERLESS_EXTENSION_TYPE: "SERVERSIDE_API_EXTENSION";
|
|
10
10
|
/**
|
|
11
11
|
* Creates the spawn command arguments for an extension.
|
|
12
12
|
*
|
package/src/serverlessUtils.js
CHANGED
|
@@ -9,7 +9,7 @@ exports.analyzeProcessExit = exports.splitBufferToLines = exports.formatLogLine
|
|
|
9
9
|
exports.SERVERLESS_PORT_MIN = 22230;
|
|
10
10
|
exports.SERVERLESS_PORT_MAX = 22239;
|
|
11
11
|
/** Serverless extension type constant */
|
|
12
|
-
exports.SERVERLESS_EXTENSION_TYPE = "
|
|
12
|
+
exports.SERVERLESS_EXTENSION_TYPE = "SERVERSIDE_API_EXTENSION";
|
|
13
13
|
/**
|
|
14
14
|
* Creates the spawn command arguments for an extension.
|
|
15
15
|
*
|