gpt4 book ai didi

image - grunt-contrib-imagemin 输出 "Fatal error: ENOENT, no such file or directory"

转载 作者:行者123 更新时间:2023-12-02 08:17:51 24 4
gpt4 key购买 nike

命令grunt imagemin将以下内容输出到随机文件。

Fatal error: ENOENT, no such file or directory 'app/public/assets/img/epg/recordseries.png'

有趣的是,每次我再次运行命令 grunt imagemin 时,它都会设法处理更多文件,并以输出有关另一个文件的相同错误结束。

我正在使用

node v0.10.24
npm 1.3.21
grunt@0.4.2
grunt-contrib-imagemin@0.5.0 node_modules/grunt-contrib-imagemin
+-- filesize@2.0.0
+-- async@0.2.9
+-- chalk@0.4.0 (has-color@0.1.2, ansi-styles@1.0.0, strip-ansi@0.1.1)
+-- image-min@0.1.2 (mkdirp@0.3.5, cache-file@0.1.2, mout@0.7.1, optipng-bin@0.3.1, jpegtran-bin@0.2.3, gifsicle@0.1.4)

这是我的 imagemin 任务的 grunt 配置:

grunt.config('imagemin', {
options: {
optimizationLevel: 3, // 0 to 7, default =7)
// pngquant: true
},
dynamic: { // Multiple target
files: [{
expand: true, // Enable dynamic expansion
cwd: '<%= context.source %>/assets/img/', // equal to app/wesource/assets/img/
src: ['!**/*-'+arrayToRegexStr(platformIgnoreList)+'**', '**/*.{png,jpg,jpeg,gif}'], // Actual patterns to match //
dest: '<%= context.public %>/assets/img/' // equal to app/public/assets/img/
}]
}
});

最佳答案

使用以下命令卸载版本 0.5.0 并返回到版本 0.3.0 应恢复之前的功能:

npm uninstall grunt-contrib-imagemin

npm install --save-dev grunt-contrib-imagemin@0.3.0

有一个问题,https://github.com/gruntjs/grunt-contrib-imagemin/issues/140 ,这个问题正在解决中,修复后应该可以安全升级。

关于image - grunt-contrib-imagemin 输出 "Fatal error: ENOENT, no such file or directory",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21175673/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com