-
使用 Grunt 进行组件构建的grunt-component-build
资源介绍
咕噜声组件构建
使用 Grunt 构建组件。
入门
如果您以前没有使用过grunt ,请务必查看入门指南,因为它解释了如何创建Gruntfile以及安装和使用 grunt 插件。 熟悉该过程后,请使用以下命令安装此插件:
npm install grunt-component-build --save-dev
然后在你的 Gruntfile 中加载任务
grunt . loadNpmTasks ( 'grunt-component-build' ) ;
基础知识
在 Grunt 文件中添加一个组件部分:
componentbuild: {
dev : {
options : {
name : 'dev'
} ,
src : 'my-component' ,
dest : 'my-component/build'
}
}
您可以