Page 468 - AngularJS权威教程
P. 468
448 第 34 章 下一步
程序包,就像引入本地目录中的任何其他脚本一样。
<script
src="/bower_components/angular/angular.js">
</script>
34.6.7 移除程序包
使用Bower移除程序包也是可能的。可以在Bower目录手动删除文件,或者运行uninstall
命令。
这个uninstall命令允许我们使用--save和--save-dev标记映射bower.json文件的变化。
# Remove a dependency
$ bower uninstall --save-dev angular-route
# Remove a devDependency
$ bower uninstall --save-dev bootstrap-sass
34.7 Yeoman
Yeoman 是本章前面讨论过的一个工具的集合:
①
Yeoman;
Grunt;
Bower。
Yeoman本身是一个脚手架工具,通过配置Grunt配置,构建应用程序工作空间和管理工作流
程,以及帮助我们构建新的应用程序,不管我们构建的应用程序类型。
在编写本书时,大约有300个社区编写的生成器可用,这些生成器已经建立了很多不同类型
的项目,从Angular 站点到Backbone.js 站点,甚至还包括Python flask 项目。
③
②
④
Grunt被设定为构建工具,而Bower用来处理依赖管理。
34.7.1 安装
⑥
⑤
安装Yeoman很简单。首先,需要确保安装了Node.js 和Git 。某些生成器可能还需要安装
Ruby 和Compass 。
⑦
⑧
安装好这些依赖之后,可以使用npm安装Yeoman:
$ npm install -g yo
——————————
① http://yeoman.io/
② https://github.com/yeoman/generator-angular
③ https://github.com/yeoman/generator-backbone
④ https://github.com/romainberger/yeoman-flask
⑤ http://nodejs.org/
⑥ http://git-scm.com/
⑦ https://www.ruby-lang.org/
⑧ http://compass-style.org/