我目前正在关注Angular 2开发,这意味着我正在使用依赖项,例如
"@angular/common": "2.0.0-rc.4",
"@angular/compiler": "2.0.0-rc.4",
…
package.json
中的。鉴于Git中有一些有用的修复,我想从Git安装最新版本(或某些特定的提交)。 实现这一目标的最简单方法是什么?
最好避免在本地构建Angular,但如果有必要,这也是可以接受的。
答案 0 :(得分:1)
您可以从systemJs配置中引用角度cdn。
类似的东西:
@angular:'https://npmcdn.com/angular2'
然后从package.json中删除依赖项
中有一个示例//map tells the System loader where to look for things
var map = {
'app': 'app',
'@angular': 'https://npmcdn.com/@angular', // sufficient if we didn't pin the version
};
版本是在变量中指定的,但也许有像/ latest
这样的东西