mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-31 04:09:43 +02:00
Ignore legacy JS Api warnings in Svelte preprocess (#10279)
Signed-off-by: Artem Savchenko <armisav@gmail.com>
This commit is contained in:
@@ -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']
|
||||
}
|
||||
})
|
||||
};
|
||||
Reference in New Issue
Block a user