我使用NPM来管理我的前端依赖项,但我只想下载我的依赖项的缩小版本。这可能吗?
package.json
中有类似的内容可以过滤它们吗?
{
"name": "my-front-end-libs",
"version": "0.0.1",
"dependencies": {
"bootstrap": {
"version" : "3.3.5",
"filter" : {
"/**/*.min.*" : true <<<--- download only files accepted by the mask
}
}
}
}