File tree 4 files changed +4
-8
lines changed
4 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 80
80
"open-browser-webpack-plugin" : " 0.0.2" ,
81
81
"postcss-calc" : " ^5.3.1" ,
82
82
"postcss-cssnext" : " ^2.8.0" ,
83
- "postcss-import" : " ^8.1.2" ,
84
83
"postcss-loader" : " ^1.0.0" ,
85
84
"postcss-nested" : " ^1.0.0" ,
86
85
"rimraf" : " ^2.5.4" ,
Original file line number Diff line number Diff line change
1
+
2
+ body {color : calc (1 * 1px ) }
3
+
1
4
@import '~bootstrap/dist/css/bootstrap.css' ;
2
5
@import '~codemirror/lib/codemirror.css' ;
3
6
Original file line number Diff line number Diff line change @@ -4,4 +4,5 @@ module.exports = {
4
4
plugins : require ( './plugins' ) ,
5
5
output : require ( './output' ) ,
6
6
module : require ( './module' ) ,
7
+ postcss : require ( './postcss' )
7
8
} ;
Original file line number Diff line number Diff line change 1
- const postcssImport = require ( 'postcss-import' ) ;
2
- //const postcssUrl = require('postcss-url');
3
1
const postcssNested = require ( 'postcss-nested' ) ;
4
2
const postcssCssnext = require ( 'postcss-cssnext' ) ;
5
3
const postcssCalc = require ( 'postcss-calc' ) ;
6
4
7
5
module . exports = webpack => [
8
- postcssImport ( { addDependencyTo : webpack } ) ,
9
- /*postcssUrl({
10
- url: 'inline',
11
- from: 'frontend/pcss/style.pcss'
12
- }),*/
13
6
postcssNested ( ) ,
14
7
postcssCssnext ( ) ,
15
8
postcssCalc ( )
You can’t perform that action at this time.
0 commit comments