Permalink
Browse files
fix postcss require in gulpfile
- Loading branch information...
Showing
with
4 additions
and
1 deletion.
-
+4
−1
gulpfile.js
|
|
@@ -4,7 +4,10 @@ var gulp = require('gulp'); |
|
|
var bs = require('browser-sync');
|
|
|
var $ = require('gulp-load-plugins')({
|
|
|
replaceString: /^gulp(-|\.)|postcss-/,
|
|
|
- pattern: ['*']
|
|
|
+ pattern: ['*'],
|
|
|
+ rename: {
|
|
|
+ postcss: "postcss-base" // for difference between gulp-postcss & postcss
|
|
|
+ }
|
|
|
});
|
|
|
|
|
|
/* paths */
|
|
|
|
0 comments on commit
ef1d085