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

View File

@ -0,0 +1,21 @@
#!/bin/bash
set -e
# Delete old packages
rm -f *.tgz
# Pack @ionic/core
npm pack ../../../../../core
# Pack @ionic/angular
npm pack ../../../dist
# Pack @ionic/angular-server
npm pack ../../../../angular-server/dist
# Install Dependencies
npm install *.tgz --no-save
# Delete Angular cache directory
rm -rf .angular/