@absolutejs/absolute 0.19.0-beta.202 → 0.19.0-beta.204
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 +5 -2
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -1021,14 +1021,17 @@ 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",
|
|
1027
|
-
"
|
|
1028
|
+
resolve7("tsconfig.json"),
|
|
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