gpt4 book ai didi

gruntjs - 如何在 uglify grunt 任务中指定多个源映射?

转载 作者:行者123 更新时间:2023-12-04 00:56:41 25 4
gpt4 key购买 nike

我正在使用 grunt-contrib-uglify我的插件 grunt 0.4 .

我有以下任务:

uglify: {
dist: {
options: {
sourceMap: 'dist/sm/sm.js'
},
files: grunt.file.expandMapping(['*.js'], 'dist/js', {
cwd: 'dist/js'
})
}
},

可以看到,uglify 被配置为压缩多个文件,并且只指定了一个 source-map。 (我无法找出指定多个源映射输出的方法)。

此外,uglify 会在压缩每个 js 文件后覆盖 soucemap。

如何配置此插件以输出我所有 js 文件的完整源映射?

最佳答案

您可以在 sourceMap 设置功能。

uglify: {
options: {
sourceMap: function(path) { return path.replace(/.js/,".map")}
},
.....

关于gruntjs - 如何在 uglify grunt 任务中指定多个源映射?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14207983/

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