chore: move test apps to test-app directory

This commit is contained in:
Liam DeBeasi
2024-03-08 01:39:47 +00:00
parent b703b7a724
commit bef3e77f01
582 changed files with 2 additions and 9 deletions

View 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