Skip to content

Commit

Permalink
chore: add silenced deprecations from Gulp plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrotherham committed Feb 24, 2025
1 parent d053c9e commit 573f31b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion gulp/tasks/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -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()])
Expand Down

0 comments on commit 573f31b

Please sign in to comment.