mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 17:42:15 +08:00
test(angular): add support for multi-version testing (#25665)
This commit is contained in:
23
angular/test/base/scripts/build-ionic.sh
Normal file
23
angular/test/base/scripts/build-ionic.sh
Normal file
@ -0,0 +1,23 @@
|
||||
pushd ../../..
|
||||
|
||||
# Build core
|
||||
pushd core
|
||||
npm run build
|
||||
npm link
|
||||
popd
|
||||
|
||||
# Build angular
|
||||
pushd angular
|
||||
npm link @ionic/core
|
||||
npm run build
|
||||
npm link
|
||||
popd
|
||||
|
||||
# Build angular-server
|
||||
pushd packages/angular-server
|
||||
npm link @ionic/core
|
||||
npm link @ionic/angular
|
||||
npm run build
|
||||
popd
|
||||
|
||||
popd
|
Reference in New Issue
Block a user