Starter repository for extensions for Bullhorn 2017
- MASTER BRANCH == static version
- FULLSTACK == full stack version (STILL TODO)
- Clone This
npm installoryarn installnpm start
In general, the upgrade process will vary slightly everytime. However, websites such as https://update.angular.io help walk you through the process for each version of Angular. For a concrete example, the entire process of cloning + upgrading from Angular 10 to 13 is detailed below:
git clone xnpm install- Run
ng update @angular/core@11 @angular/cli@11 --allow-dirtyto take Angular from v10 to v11 - Run
ng update @angular/core@12 @angular/cli@12 --allow-dirtyto take Angular from v11 to v12 - Manually update
@angular/cdkto the Angular 12 version in package.json to fix dependency error npm installto install updated@angular/cdkand its dependenciesng update @angular/core@13 @angular/cli@13 --allow-dirtyto take Angular from v12 to v13- Update other NPM packages manually in package.json (this was primarily done by looking at packages on https://npmjs.org / text output from
npm install) npm installng update novo-elements --migrate-only --from=0.0.0 --to=7.0.0 --force --allow-dirtyto update Novo Elements to v7- Manually resolve compile errors (mainly just paths) within Angular app