UNPKG

1.23 kBJavaScriptView Raw
1// Some features might affect others (eg: var() in a calc()
2// in order to prevent issue, the map contains a sort of dependencies list
3//
4// null == always enable (& no caniuse data)
5"use strict";
6
7Object.defineProperty(exports, "__esModule", {
8 value: true
9});
10exports["default"] = {
11 customProperties: ["css-variables"],
12 // calc() transformation only make sense with transformed custom properties,
13 // don't you think ?
14 // calc: null,
15 // @todo open PR on caniuse repo https://github.com/Fyrd/caniuse
16 // customMedia: [ null ],
17 // mediaQueriesRange: [ null ],
18 // customSelectors: [ null ],
19 // colorRebeccapurple: [ null ], // @todo can be done easily
20 // colorHwb: [ null ],
21 // colorGray: [ null ],
22 // colorHexAlpha: [ null ],
23 // colorFunction:[ null],
24 // fontVariant: [ null ],
25 // @todo can be done using a callback, this is only used for Firefox < 35
26 // filter: [ null ],
27 initial: ["css-all", "css-initial-value"],
28 rem: ["rem"],
29 pseudoElements: ["css-gencontent"],
30 // pseudoClassMatches: [ null ],
31 // pseudoClassNot: [ null ],
32 colorRgba: ["css3-colors"]
33};
34module.exports = exports["default"];
35// will always be null since autoprefixer does the same game as we do
36// autoprefixer: [ null ]
\No newline at end of file