[fix] don't emit css option deprecation warning for now (#8012)

pull/8021/head
Simon H 2 years ago committed by GitHub
parent ee480bded6
commit f4779eee4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,5 +1,9 @@
# Svelte changelog # Svelte changelog
## Unreleased
* Do not emit deprecation warnings for `css` compiler options for now ([#8009](https://github.com/sveltejs/svelte/issues/8009))
## 3.53.0 ## 3.53.0
* Check whether `parentNode` exists before removing child ([#6037](https://github.com/sveltejs/svelte/issues/6037)) * Check whether `parentNode` exists before removing child ([#6037](https://github.com/sveltejs/svelte/issues/6037))

@ -89,13 +89,15 @@ function validate_options(options: CompileOptions, warnings: Warning[]) {
if (css === true || css === false) { if (css === true || css === false) {
options.css = css === true ? 'injected' : 'external'; options.css = css === true ? 'injected' : 'external';
const message = `options.css as a boolean is deprecated. Use '${options.css}' instead of ${css}.`; // possibly show this warning once we decided how Svelte 4 looks like
warnings.push({ // const message = `options.css as a boolean is deprecated. Use '${options.css}' instead of ${css}.`;
code: 'options-css-boolean-deprecated', // warnings.push({
message, // code: 'options-css-boolean-deprecated',
filename, // message,
toString: () => message // filename,
}); // toString: () => message
// });
// }
} }
if (namespace && valid_namespaces.indexOf(namespace) === -1) { if (namespace && valid_namespaces.indexOf(namespace) === -1) {

Loading…
Cancel
Save