@trackunit/iris-app-sdk-vite 0.3.11 → 0.3.14

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,24 @@
1
+ ## 0.3.14 (2026-04-24)
2
+
3
+ ### 🧱 Updated Dependencies
4
+
5
+ - Updated iris-app-build-utilities to 1.15.14
6
+ - Updated iris-app-api to 1.17.14
7
+
8
+ ## 0.3.13 (2026-04-23)
9
+
10
+ ### 🧱 Updated Dependencies
11
+
12
+ - Updated iris-app-build-utilities to 1.15.13
13
+ - Updated iris-app-api to 1.17.13
14
+
15
+ ## 0.3.12 (2026-04-23)
16
+
17
+ ### 🧱 Updated Dependencies
18
+
19
+ - Updated iris-app-build-utilities to 1.15.12
20
+ - Updated iris-app-api to 1.17.12
21
+
1
22
  ## 0.3.11 (2026-04-23)
2
23
 
3
24
  ### 🧱 Updated Dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app-sdk-vite",
3
- "version": "0.3.11",
3
+ "version": "0.3.14",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "executors": "./executors.json",
@@ -10,8 +10,8 @@
10
10
  "dependencies": {
11
11
  "rxjs": "7.8.1",
12
12
  "win-ca": "^3.5.1",
13
- "@trackunit/iris-app-build-utilities": "1.15.11",
14
- "@trackunit/iris-app-api": "1.17.11",
13
+ "@trackunit/iris-app-build-utilities": "1.15.14",
14
+ "@trackunit/iris-app-api": "1.17.14",
15
15
  "tslib": "^2.6.2",
16
16
  "vite": "7.3.1",
17
17
  "@module-federation/vite": "1.11.0",
@@ -26,6 +26,7 @@ const deleteOutputDir = (root, outputPath) => {
26
26
  */
27
27
  async function* buildExecutor(options, context) {
28
28
  await (0, iris_app_build_utilities_1.checkPackageVersion)(false);
29
+ const skipTypeChecking = options.skipTypeChecking ?? false;
29
30
  // eslint-disable-next-line @trackunit/no-typescript-assertion, @typescript-eslint/no-non-null-assertion
30
31
  const projectRoot = context.projectsConfigurations.projects[context.projectName].root;
31
32
  const projectRootDir = (0, path_1.join)(context.root, projectRoot);
@@ -37,7 +38,7 @@ async function* buildExecutor(options, context) {
37
38
  // Now we can safely import the manifest (it uses @trackunit/* imports)
38
39
  const IrisAppManifest = (await Promise.resolve(`${manifestPath}`).then(s => tslib_1.__importStar(require(s)))).default;
39
40
  const defaultConfig = await (0, defaultViteConfig_1.getDefaultViteConfig)("production", context.root, projectRootDir, IrisAppManifest, context, {
40
- skipTypeChecking: options.skipTypeChecking,
41
+ skipTypeChecking,
41
42
  });
42
43
  // Load optional custom config
43
44
  let finalConfig = defaultConfig;
@@ -19,6 +19,7 @@ const defaultViteConfig_1 = require("../utils/defaultViteConfig");
19
19
  */
20
20
  async function* serveExecutor(options, context) {
21
21
  await (0, iris_app_build_utilities_1.checkPackageVersion)(false);
22
+ const skipTypeChecking = options.skipTypeChecking ?? false;
22
23
  // eslint-disable-next-line @trackunit/no-typescript-assertion, @typescript-eslint/no-non-null-assertion
23
24
  const projectRoot = context.projectsConfigurations.projects[context.projectName].root;
24
25
  const projectRootDir = (0, path_1.join)(context.root, projectRoot);
@@ -34,7 +35,7 @@ async function* serveExecutor(options, context) {
34
35
  // Get default config (internally imports @trackunit/iris-app-vite-plugin)
35
36
  const defaultConfig = await (0, defaultViteConfig_1.getDefaultViteConfig)("development", context.root, projectRootDir, irisAppManifest, context, {
36
37
  serversidePortMap: serversideResult.portMap,
37
- skipTypeChecking: options.skipTypeChecking,
38
+ skipTypeChecking,
38
39
  });
39
40
  // Load optional custom config
40
41
  let finalConfig = defaultConfig;