fix(build): Release compiler_cli packages along with rest of @angular packages and use ANGULAR_VERSION for package version and peer dependencies.

This commit is contained in:
Vikram Subramanian 2016-05-13 13:33:58 -07:00
parent 05266241af
commit 9a05ca95f6
2 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@angular/compiler-cli",
"version": "0.2.0",
"version": "$$ANGULAR_VERSION$$",
"description": "Execute angular2 template compiler in nodejs.",
"main": "index.js",
"typings": "index.d.ts",
@ -15,9 +15,9 @@
},
"peerDependencies": {
"typescript": "^1.9.0-dev",
"@angular/compiler": "^2.0.0-rc",
"@angular/platform-server": "^2.0.0-rc",
"@angular/core": "^2.0.0-rc"
"@angular/compiler": "$$ANGULAR_VERSION$$",
"@angular/platform-server": "$$ANGULAR_VERSION$$",
"@angular/core": "$$ANGULAR_VERSION$$"
},
"repository": {
"type": "git",

View File

@ -21,6 +21,7 @@ find ./dist/packages-dist/ -type f -name "*umd.js" -print0 | xargs -0 sed -i ''
for PACKAGE in \
core \
compiler \
compiler_cli \
common \
http \
platform-browser \