File tree Expand file tree Collapse file tree 5 files changed +19
-3
lines changed
Expand file tree Collapse file tree 5 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 99 "dependencies" : {
1010 "icss-replace-symbols" : " 1.0.2" ,
1111 "postcss" : " 5.0.10" ,
12- "postcss-modules-values" : " 1.1.2" ,
1312 "postcss-modules-extract-imports" : " 1.0.0" ,
1413 "postcss-modules-local-by-default" : " 1.0.1" ,
15- "postcss-modules-scope" : " 1.0.0"
14+ "postcss-modules-scope" : " 1.0.1" ,
15+ "postcss-modules-values" : " 1.1.2"
1616 },
1717 "devDependencies" : {
18+ "autoprefixer" : " 6.3.6" ,
1819 "babel" : " 5.8.29" ,
1920 "babel-eslint" : " 4.1.3" ,
2021 "babelify" : " 6.4.0" ,
Original file line number Diff line number Diff line change 1+ ._flexbox_source__foo {
2+ display : -ms-flexbox;
3+ display : flex;
4+ }
Original file line number Diff line number Diff line change 1+ {
2+ "foo" : " _flexbox_source__foo"
3+ }
Original file line number Diff line number Diff line change 1+ .foo {
2+ display : flex;
3+ }
Original file line number Diff line number Diff line change 33import assert from "assert"
44import fs from "fs"
55import path from "path"
6+ import autoprefixer from "autoprefixer"
7+
68import FileSystemLoader from "../src/file-system-loader"
9+ import { defaultPlugins } from "../src"
710
811let normalize = ( str ) => {
912 return str . replace ( / \r \n ? / g, "\n" ) ;
1013}
1114
15+
1216const pipelines = {
1317 "test-cases" : undefined ,
14- "cssi" : [ ]
18+ "cssi" : [ ] ,
19+ "autoprefixer" : defaultPlugins . concat ( autoprefixer ( { browsers : 'IE 10' } ) )
1520}
1621
1722Object . keys ( pipelines ) . forEach ( dirname => {
You can’t perform that action at this time.
0 commit comments