使用定义的选项值定义 grunt 别名
defining grunt aliases with option values defined
G运行t 是否允许像 npm 或 bash 那样定义自定义别名?在 grunt docs 它说,可以定义任务序列(可能只是一个项目)。所以在我看来应该叫chaining
而不是aliasing
。我正在寻找的是提供一个 g运行t 别名,它只会定义参数的值。
使用 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
的别名吗?
G运行t 是否允许像 npm 或 bash 那样定义自定义别名?在 grunt docs 它说,可以定义任务序列(可能只是一个项目)。所以在我看来应该叫chaining
而不是aliasing
。我正在寻找的是提供一个 g运行t 别名,它只会定义参数的值。
使用 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
的别名吗?