我正在尝试使用html-minifier grunt插件(https://github.com/gruntjs/grunt-contrib-htmlmin),文档中说我们可以使用多个目标。也就是说,我们可以为不同的构建环境指定不同的选项。在下面的示例中,将2个目标配置为'dist'和'dev'
grunt.initConfig({
htmlmin: {
dist: {
options: {
removeComments: true,
collapseWhitespace: true
},
files: {
'dist/index.html': 'src/index.html'
}
},
dev: {
files: {
'dist/index.html': 'src/index.html'
}
}
}
});
但是我的问题是,在使用grunt时,如何指示插件使用特定目标?例如,对于生产版本,我想使用插件配置中指定的“ dist”目标。我可以做 grunt htmlmin ,但是它只会触发'dev'目标。