mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 09:34:19 +08:00

* init ivy support * chore(): angular prerelease * chore: update * updates * angular 8 deps * chore(angular): update sync script * updates * chore(): remove console log * chore(): updates * chore(): update release script * fix(): remove comments * fix(): remove test version * fix(): failing angular test * fix(): failing angular tests * fix(): update ci steps * fix(): fix sync script * chore(): refactor angular proxies * chore(): updates * chore(): updates * chore(): lint * chore(): updates * chore(ssr): check for window * chore(): fix virtual scroll angular tests * chore(): lint * chore(): add server to link * chore(scripts): update release script * chore(): bump version check * style(scripts): spacing
Local @ionic/angular test/testapp development
npm install
at the root ofangular
npm run build.dev
to build local@ionic/angular
and@ionic/core
cd test/testapp
to the test appnpm install
in the test app directorynpm run serve
copies packages and serve the app (see package.json for more options)- http://localhost:4200/
npm link local development
npm link
doesn't work as expected due to the devDependency
on @angular/core
. This is the work around...
npm run build.link ../ionic-conference-app
When the command above is ran from the angular
directory, it will build @ionic/angular
and copy the dist
directory to the correct location of another local project. In the example above, the end result is that it copies the dist
directory to ../ionic-conference-app/node_modules/@ionic/angular/dist
. The path given should be relative to the root of this mono repo.
package.json note
The package.json
file in this directory references Ionic 3 and is in here to get GitHub to properly show the Used By counts on the repo. Do not remove it!