Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 15 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | const atImport = require("postcss-smart-import"); |
||
2 | const autoprefixer = require('autoprefixer'); |
||
3 | const rucksack = require('rucksack-css'); |
||
4 | const csswring = require('csswring'); |
||
5 | |||
6 | module.exports = function () { |
||
7 | return [ |
||
8 | atImport, |
||
9 | rucksack(), |
||
10 | autoprefixer({ |
||
11 | browsers: ['last 2 versions'] |
||
12 | }), |
||
13 | csswring |
||
14 | ]; |
||
15 | }; |
||
16 |