@absolutejs/absolute 0.19.0-beta.202 → 0.19.0-beta.203

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/dist/cli/index.js CHANGED
@@ -1021,6 +1021,7 @@ var run = async (name, command) => {
1021
1021
  ]));
1022
1022
  }
1023
1023
  if (hasSvelte) {
1024
+ const svelteDir = resolve7(config.svelteDirectory);
1024
1025
  checks.push(run("svelte-check", [
1025
1026
  findBin("svelte-check"),
1026
1027
  "--tsconfig",
@@ -1028,7 +1029,9 @@ var run = async (name, command) => {
1028
1029
  "--threshold",
1029
1030
  "error",
1030
1031
  "--compiler-warnings",
1031
- "css-unused-selector:ignore"
1032
+ "css-unused-selector:ignore",
1033
+ "--workspace",
1034
+ svelteDir
1032
1035
  ]));
1033
1036
  }
1034
1037
  const results = await Promise.all(checks);
package/package.json CHANGED
@@ -208,5 +208,5 @@
208
208
  "typecheck": "bun run vue-tsc --noEmit"
209
209
  },
210
210
  "types": "./dist/src/index.d.ts",
211
- "version": "0.19.0-beta.202"
211
+ "version": "0.19.0-beta.203"
212
212
  }