We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04023b1 commit f4b51a0Copy full SHA for f4b51a0
packages/wepy-plugin-autoprefixer/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "wepy-plugin-autoprefixer",
3
- "version": "1.5.10",
+ "version": "1.6.0",
4
"description": "wepy autoprefixer plugin",
5
"main": "lib/index.js",
6
"keywords": [
packages/wepy-plugin-autoprefixer/src/index.js
@@ -37,7 +37,7 @@ export default class {
37
38
let prefixer = postcss([ autoprefixer(this.setting.config) ]);
39
40
- prefixer.process(op.code).then((result) => {
+ prefixer.process(op.code, { from: undefined }).then((result) => {
41
op.code = result.css;
42
op.next();
43
}).catch(e => {
0 commit comments