Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
刚开始使用 Yeoman 并喜欢它。但是,我正在构建一个依赖于一些 Angular 1.1.x 功能(ng-trim和ng-animate)的应用程序,并且 Angular-generator 使用最新的稳定分支作为其默认值,它不包含这些功能。
ng-trim
ng-animate
在 Yeoman 中,有没有办法生成具有最新“不稳定”分支的 Angular 应用程序?
一种解决方案是更新您的 bower.json 并使用非官方的 Angular 不稳定版本:
"dependencies": { "angular": "atizo/bower-angular-unstable#~1.1.5",
然后你必须重新运行bower install。
bower install