@trackunit/iris-app-sdk-vite 0.3.8 → 0.3.9-alpha-b318a64afd7.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app-sdk-vite",
3
- "version": "0.3.8",
3
+ "version": "0.3.9-alpha-b318a64afd7.0",
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.8",
14
- "@trackunit/iris-app-api": "1.17.8",
13
+ "@trackunit/iris-app-build-utilities": "1.15.9-alpha-b318a64afd7.0",
14
+ "@trackunit/iris-app-api": "1.17.9-alpha-b318a64afd7.0",
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 ?? true;
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;
@@ -22,7 +22,7 @@
22
22
  "skipTypeChecking": {
23
23
  "type": "boolean",
24
24
  "description": "Skip TypeScript type checking during the build",
25
- "default": false
25
+ "default": true
26
26
  }
27
27
  },
28
28
  "required": ["outputPath"]
@@ -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 ?? true;
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;
@@ -27,7 +27,7 @@
27
27
  "skipTypeChecking": {
28
28
  "type": "boolean",
29
29
  "description": "Skip TypeScript type checking during dev server",
30
- "default": false
30
+ "default": true
31
31
  }
32
32
  },
33
33
  "required": []