Questions tagged «autoprefixer»

18
浏览器列表:caniuse-lite已过时。请运行下一个命令`npm update caniuse-lite browserslist`。
最近,当我编译我的scss文件时,出现错误。错误消息显示: 浏览器列表:caniuse-lite已过时。请运行下一个命令npm update caniuse-lite browserslist 首先,如消息所述,我跑了,npm update caniuse-lite browserslist但没有解决问题。我删除了整个nod-modules目录并再次安装,同时更新了整个文件夹,npm update但没有一个解决了问题。我还重新安装了autoprefixer和browserslist,但没有一个解决了该问题。 如果我删除 "options": { "autoPrefix": "> 1%" } 从我的角度来看compilerconfig.json,一切正常,这意味着可能与autoprefixer有关。另外,我手动将软件包版本更改为最新版本,package.json然后重新安装,但没有运气。

4
Gulp-autoprefixer抛出ReferenceError:未定义承诺
我试着用吞咽的方法编译我的Sass,然后用autoprefixit进行编译,gulp-autoprefixer但出现错误。 var gulp = require('gulp'), sass = require('gulp-sass'), autoprefixer = require('gulp-autoprefixer'); gulp.task('test', function(){ gulp.src('_sass/main.sass') .pipe(sass()) .pipe(autoprefixer()) .pipe(gulp.dest('./assets/css')); }); 我正在尝试运行此命令,Gulpfile.js并且正在使用: "gulp": "~3.9.0", "gulp-sass": "~2.0.4", "gulp-autoprefixer": "~3.0.1", 和NPM版本 1.3.10 当我运行gulp test我得到这个: /home/matei/Tests/test-4/node_modules/gulp-autoprefixer/node_modules/postcss/lib/lazy-result.js:152 this.processing = new Promise(function (resolve, reject) { ^ ReferenceError: Promise is not defined at LazyResult.async (/home/matei/Tests/test-4/node_modules/gulp-autoprefixer/node_modules/postcss/lib/lazy-result.js:152:31) at LazyResult.then (/home/matei/Tests/test-4/node_modules/gulp-autoprefixer/node_modules/postcss/lib/lazy-result.js:75:21) at …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.