Update configs and NPM packages
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-08-22 19:54:01 +02:00
parent b990f944ca
commit 206d248948
5 changed files with 687 additions and 602 deletions

View File

@@ -14,11 +14,12 @@ module.exports = () => ({
// CSS Nano
!dev && require('cssnano')({
preset: 'default',
autoprefixer: true,
discardComments: { removeAll: true },
calc: { precision: 2 },
safe: true
preset: ['default', {
autoprefixer: true,
discardComments: { removeAll: true },
calc: { precision: 2 },
safe: true
}]
}),
// Banner
@@ -26,4 +27,4 @@ module.exports = () => ({
banner: `${pkg.name} v${pkg.version} \nBy ${pkg.author.name} \n${pkg.author.url}`
})
]
})
})