Grunt是否允许像npm或bash那样定义自定义别名?在grunt docs它说,可以在任务上定义一个序列(可能只是一个项目)。所以在我看来,它应该被称为chaining
而不是aliasing
。我正在寻找的是提供一个只为参数定义值的grunt别名。
使用npm,我可以npm test-e2e
运行grunt test --type=e2e
。在package.json中我得到了:
"scripts": {
"test-e2e": "node_modules/.bin/grunt test --type=e2e",
"test-unit": "node_modules/.bin/grunt test --type=unit"
}
我可以将grunt test-e2e
(注意grunt
而非上述npm
)设为grunt test --type=e2e
的别名吗?