Bump ejs, @angular/cli and webpack-bundle-analyzer

Removes [ejs](https://github.com/mde/ejs). It's no longer used after updating ancestor dependencies [ejs](https://github.com/mde/ejs), [@angular/cli](https://github.com/angular/angular-cli) and [webpack-bundle-analyzer](https://github.com/webpack-contrib/webpack-bundle-analyzer). These dependencies need to be updated together.


Removes `ejs`

Updates `@angular/cli` from 1.4.7 to 15.2.6
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Changelog](https://github.com/angular/angular-cli/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular-cli/compare/v1.4.7...15.2.6)

Updates `webpack-bundle-analyzer` from 2.13.1 to 4.8.0
- [Release notes](https://github.com/webpack-contrib/webpack-bundle-analyzer/releases)
- [Changelog](https://github.com/webpack-contrib/webpack-bundle-analyzer/blob/master/CHANGELOG.md)
- [Commits](https://github.com/webpack-contrib/webpack-bundle-analyzer/compare/v2.13.1...v4.8.0)

---
updated-dependencies:
- dependency-name: ejs
  dependency-type: indirect
- dependency-name: "@angular/cli"
  dependency-type: direct:development
- dependency-name: webpack-bundle-analyzer
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2 files changed
tree: db8d75f3f16caa441d43770870007a71c3239130
  1. .github/
  2. e2e/
  3. scripts/
  4. src/
  5. .angular-cli.json
  6. .editorconfig
  7. .gitignore
  8. center.json
  9. CONTRIBUTING.md
  10. karma.conf.js
  11. LICENSE
  12. license.config.js
  13. NOTICE
  14. package-lock.json
  15. package.json
  16. protractor.conf.js
  17. proxy.conf.json
  18. README.md
  19. tsconfig.json
  20. tslint.json
README.md

QuickStart

Setup

  • Ensure you have Node 6.10.0+ and NPM 3+ installed.
  • Install Node packages npm i

Development

Production build

  • Run license check npm run checkLicenses
  • Run in production mode npm run runProd. This is only to test if AOT is working and should never be used in a production environment.
  • Build production assets npm run build. Files will be stored under /dist.

Tests

  • Please follow the best practices here Angular Testing
  • Run karma tests npm run test

Versioning

The version numbers follow the Semantic Versioning scheme.

In addition to MAJOR.MINOR.PATCH the following postfixes are used to indicate the development state.

  • snapshot - A release currently in development.
  • m - A milestone release include specific sets of functions and are released as soon as the functionality is complete.
  • rc - A release candidate is a version with potential to be a final product, considered code complete.
  • ga - General availability indicates that this release is the best available version and is recommended for all usage.

The versioning layout is {MAJOR}.{MINOR}.{PATCH}-{INDICATOR}[.{PATCH}]. Only milestones and release candidates can have patch versions. Some examples:

1.2.3-snapshot
1.3.5-m.1
1.5.7-rc.2
2.0.0-ga

Contributing

See CONTRIBUTING file.

License

See LICENSE file.