@trackunit/iris-app-sdk-webpack 1.11.72 → 1.11.74
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 +16 -0
- package/package.json +4 -4
- package/src/executors/serve/executor.js +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## 1.11.74 (2026-03-12)
|
|
2
|
+
|
|
3
|
+
### 🧱 Updated Dependencies
|
|
4
|
+
|
|
5
|
+
- Updated iris-app-build-utilities to 1.12.74
|
|
6
|
+
- Updated iris-app-webpack-plugin to 1.11.74
|
|
7
|
+
- Updated iris-app-api to 1.14.68
|
|
8
|
+
|
|
9
|
+
## 1.11.73 (2026-03-12)
|
|
10
|
+
|
|
11
|
+
### 🧱 Updated Dependencies
|
|
12
|
+
|
|
13
|
+
- Updated iris-app-build-utilities to 1.12.73
|
|
14
|
+
- Updated iris-app-webpack-plugin to 1.11.73
|
|
15
|
+
- Updated iris-app-api to 1.14.67
|
|
16
|
+
|
|
1
17
|
## 1.11.72 (2026-03-11)
|
|
2
18
|
|
|
3
19
|
### 🧱 Updated Dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app-sdk-webpack",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.74",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"repository": "https://github.com/Trackunit/manager",
|
|
6
6
|
"executors": "./executors.json",
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
"win-ca": "^3.5.1",
|
|
16
16
|
"copy-webpack-plugin": "11.0.0",
|
|
17
17
|
"webpack-bundle-analyzer": "^4.8.0",
|
|
18
|
-
"@trackunit/iris-app-build-utilities": "1.12.
|
|
19
|
-
"@trackunit/iris-app-api": "1.14.
|
|
20
|
-
"@trackunit/iris-app-webpack-plugin": "1.11.
|
|
18
|
+
"@trackunit/iris-app-build-utilities": "1.12.74",
|
|
19
|
+
"@trackunit/iris-app-api": "1.14.68",
|
|
20
|
+
"@trackunit/iris-app-webpack-plugin": "1.11.74",
|
|
21
21
|
"tslib": "^2.6.2"
|
|
22
22
|
},
|
|
23
23
|
"types": "./src/index.d.ts",
|
|
@@ -29,13 +29,13 @@ async function* default_1(options, context) {
|
|
|
29
29
|
throw new Error("option.webpackConfig is required");
|
|
30
30
|
}
|
|
31
31
|
const IrisAppManifest = (await Promise.resolve(`${tileManifestPath}`).then(s => tslib_1.__importStar(require(s)))).default;
|
|
32
|
-
// Spawn
|
|
33
|
-
const
|
|
32
|
+
// Spawn serverside extensions and get port mapping
|
|
33
|
+
const serversideResult = await (0, iris_app_build_utilities_1.spawnServersideExtensions)(IrisAppManifest, context.root);
|
|
34
34
|
let observable;
|
|
35
35
|
try {
|
|
36
36
|
const defaultConfig = (0, defaultWebpackConfig_1.getDefaultConfig)("development", context.root, projectRootDir, IrisAppManifest, {
|
|
37
37
|
devServerOptions: {
|
|
38
|
-
|
|
38
|
+
serversidePortMap: serversideResult.portMap,
|
|
39
39
|
},
|
|
40
40
|
});
|
|
41
41
|
const customConfigFile = await Promise.resolve(`${options.webpackConfig}`).then(s => tslib_1.__importStar(require(s)));
|
|
@@ -57,13 +57,13 @@ async function* default_1(options, context) {
|
|
|
57
57
|
success: !stats.hasErrors(),
|
|
58
58
|
};
|
|
59
59
|
}), op.finalize(() => {
|
|
60
|
-
// Cleanup
|
|
61
|
-
|
|
60
|
+
// Cleanup serverside extension processes
|
|
61
|
+
serversideResult.cleanup();
|
|
62
62
|
}));
|
|
63
63
|
}
|
|
64
64
|
catch (error) {
|
|
65
65
|
// Ensure cleanup runs if setup fails before observable is created
|
|
66
|
-
|
|
66
|
+
serversideResult.cleanup();
|
|
67
67
|
throw error;
|
|
68
68
|
}
|
|
69
69
|
return yield* (0, rxjs_for_await_1.eachValueFrom)(observable);
|