Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « postcss « examples - github.com/twbs/rfs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b5c9bbe7dc0bd2a7b022ce28f19da377d263fd35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
'use strict';

const fs = require('fs');
const path = require('path');
const postcss = require('postcss');
const rfs = require('../../postcss.js');

const css = fs.readFileSync(path.join(__dirname, '/src/main.css'), 'utf8');
const options = {
  twoDimensional: false,
  baseValue: 20,
  unit: 'rem',
  breakpoint: 1200,
  breakpointUnit: 'px',
  factor: 10,
  class: false,
  unitPrecision: 6,
  safariIframeResizeBugFix: false,
  remValue: 16
};

const processedCss = postcss(rfs(options)).process(css).css;

fs.writeFile(path.join(__dirname, '/dest/main.css'), processedCss, err => {
  if (err) {
    throw err;
  }
});