Ignore legacy JS Api warnings in Svelte preprocess (#10279)

Signed-off-by: Artem Savchenko <armisav@gmail.com>
This commit is contained in:
Artyom Savchenko
2025-12-07 21:08:24 +05:00
committed by GitHub
parent 4f6094ccaa
commit 8472b9b173
72 changed files with 432 additions and 72 deletions
@@ -1,5 +1,10 @@
const sveltePreprocess = require('svelte-preprocess')
module.exports = {
preprocess: sveltePreprocess()
preprocess: sveltePreprocess({
scss: {
// This is expected as svelte-preprocess hasn't fully migrated to the modern API yet
silenceDeprecations: ['legacy-js-api']
}
})
};