File tree Expand file tree Collapse file tree 4 files changed +4
-8
lines changed
Expand file tree Collapse file tree 4 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 8080 "open-browser-webpack-plugin" : " 0.0.2" ,
8181 "postcss-calc" : " ^5.3.1" ,
8282 "postcss-cssnext" : " ^2.8.0" ,
83- "postcss-import" : " ^8.1.2" ,
8483 "postcss-loader" : " ^1.0.0" ,
8584 "postcss-nested" : " ^1.0.0" ,
8685 "rimraf" : " ^2.5.4" ,
Original file line number Diff line number Diff line change 1+
2+ body {color : calc (1 * 1px ) }
3+
14@import '~bootstrap/dist/css/bootstrap.css' ;
25@import '~codemirror/lib/codemirror.css' ;
36
Original file line number Diff line number Diff line change @@ -4,4 +4,5 @@ module.exports = {
44 plugins : require ( './plugins' ) ,
55 output : require ( './output' ) ,
66 module : require ( './module' ) ,
7+ postcss : require ( './postcss' )
78} ;
Original file line number Diff line number Diff line change 1- const postcssImport = require ( 'postcss-import' ) ;
2- //const postcssUrl = require('postcss-url');
31const postcssNested = require ( 'postcss-nested' ) ;
42const postcssCssnext = require ( 'postcss-cssnext' ) ;
53const postcssCalc = require ( 'postcss-calc' ) ;
64
75module . exports = webpack => [
8- postcssImport ( { addDependencyTo : webpack } ) ,
9- /*postcssUrl({
10- url: 'inline',
11- from: 'frontend/pcss/style.pcss'
12- }),*/
136 postcssNested ( ) ,
147 postcssCssnext ( ) ,
158 postcssCalc ( )
You can’t perform that action at this time.
0 commit comments