mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
759a69b5b7
- Replace uses of deprecated Bourbon helpers with raw CSS - Add autoprefixer into the build chain to prefix the now removed helpers This process was achieved by running through each of the deprecation warnings and using the following bash function to replace it in all files: ``` function bourbon-deprecate() { grep -rl "@include $1" ./frontend --exclude-dir=.git | xargs sed -i '' -E "s/@include $1[(](.*)[)]/$1: \1/g" } ``` For some helpers, this did not result in valid CSS, so manual modifications were made. Closes #1189 #1274
6 lines
66 B
JavaScript
6 lines
66 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
require('autoprefixer')
|
|
]
|
|
}
|