From 573f31bbb3c84a1b6ccba94d5d5879d3b4068117 Mon Sep 17 00:00:00 2001 From: Colin Rotherham Date: Fri, 21 Feb 2025 08:46:54 +0000 Subject: [PATCH] chore: add silenced deprecations from Gulp plugin --- gulp/tasks/styles.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/gulp/tasks/styles.js b/gulp/tasks/styles.js index 87315275b..878a85d7d 100644 --- a/gulp/tasks/styles.js +++ b/gulp/tasks/styles.js @@ -23,7 +23,13 @@ function compileStyles(assetPath, { srcPath, destPath, output = {} }) { const { css } = await compileAsync(from, { loadPaths: ['./'], quietDeps: true, - silenceDeprecations: ['import'] + silenceDeprecations: [ + 'color-functions', + 'global-builtin', + 'import', + 'mixed-decls', + 'slash-div' + ] }) const processor = postcss([autoprefixer(), cssnano()])