File tree Expand file tree Collapse file tree 3 files changed +14
-22
lines changed
Expand file tree Collapse file tree 3 files changed +14
-22
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 99 "license" : " MIT" ,
1010 "peerDependencies" : {
1111 "rxjs" : " 5.0.0-beta.2" ,
12- "@angular/core" : " $$ANGULAR_VERSION$$"
12+ "@angular/core" : " $$ANGULAR_VERSION$$" ,
1313 "@angular/facade" : " $$ANGULAR_VERSION$$"
1414 }
1515}
Original file line number Diff line number Diff line change 33set -ex
44
55cd ` dirname $0 `
6+
7+ VERSION=$1
8+
9+ if [[ " ${VERSION} " == " " ]]
10+ then
11+ echo " Version number required"
12+ exit 1
13+ fi
14+
615./build.sh
716
817echo " ====== RENAMING @angular to @igorminar ======"
918find ./dist/packages-dist/ -type f -print0 | xargs -0 sed -i ' ' ' s/\@angular/\@igorminar/g'
1019
20+ echo " ====== RENAMING @angular to @igorminar ======"
21+ find ./dist/packages-dist/ -type f -name package.json -print0 | xargs -0 sed -i ' ' " s/\\\$\\\$ ANGULAR_VERSION\\\$\\\$ /${VERSION} /g"
22+
1123for PACKAGE in \
1224 core \
1325 compiler \
1426 common \
27+ facade \
1528 http \
1629 platform-browser \
1730 platform-server \
You can’t perform that action at this time.
0 commit comments