helpers/postcss/index.js   A
last analyzed

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 15
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 0
wmc 1
nc 1
mnd 0
bc 1
fnc 1
dl 0
loc 15
rs 10
bpm 1
cpm 1
noi 0
c 0
b 0
f 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A module.exports 0 10 1
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