gulp-imagemin@8.0.0 不能用来找我
Posted 嘴巴嘟嘟
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gulp-imagemin@8.0.0 不能用来找我相关的知识,希望对你有一定的参考价值。
打包图片的常见使用
package.json
最新版本都是使用 ES6 模块,如果本地使用的require()的话,两个用法不一致导致会出现问题,不如都使用ES6模块,只需要在package.json
添加"type": "module"即可。
"name": "img",
"version": "1.0.0",
"description": "",
"main": "gulpfile.js",
"scripts":
"test": "echo \\"Error: no test specified\\" && exit 1"
,
"author": "",
"license": "ISC",
"type": "module",
"devDependencies":
"gulp": "^4.0.2",
"gulp-image": "^6.3.1",
"gulp-imagemin": "^8.0.0"
gulpfile.js
import gulp from 'gulp';
import imagemin from 'gulp-imagemin';
export default () =>
return (
gulp.src('src/images/*')
.pipe(imagemin())
.pipe(gulp.dest('dist/images'))
);
以上是关于gulp-imagemin@8.0.0 不能用来找我的主要内容,如果未能解决你的问题,请参考以下文章
6-22——“ == ”不能用来比较两个字符串是否相等,解决方法——折半查找算法找素数的简单算法