Skip to content

Commit

Permalink
✨ Angular v15 Update
Browse files Browse the repository at this point in the history
  • Loading branch information
toddmotto committed Nov 23, 2022
1 parent d8b1006 commit 1b268b9
Show file tree
Hide file tree
Showing 5 changed files with 3,204 additions and 6,417 deletions.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<h1 align="center">
<img width="40" valign="bottom" src="https://ultimatecourses.com/static/icons/angular.svg">
Angular Basics v14: Starter Project
Angular Basics v15: Starter Project
</h1>
<h4 align="center">Starter project for the Ultimate Courses <a href="https://ultimatecourses.com/learn/angular-basics" target="_blank">Angular Basics course</a>.</h4>

Expand All @@ -12,6 +12,19 @@ Angular Basics v14: Starter Project

---

### Inside the course

* ✅ Template Essentials
* ✅ Component Architecture
* ✅ Styles and Encapsulation
* ✅ Pipes
* ✅ Rendering Flows
* ✅ Template Forms and Validation
* ✅ State Management and Services
* ✅ Services and API Requests
* ✅ Routing and Navigation
* ✅ Standalone Components

This project was generated with [Angular CLI](https://github.com/angular/angular-cli).

## Development server
Expand Down
33 changes: 15 additions & 18 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@

module.exports = function (config) {
config.set({
basePath: '',
frameworks: ['jasmine', '@angular-devkit/build-angular'],
basePath: "",
frameworks: ["jasmine", "@angular-devkit/build-angular"],
plugins: [
require('karma-jasmine'),
require('karma-chrome-launcher'),
require('karma-jasmine-html-reporter'),
require('karma-coverage'),
require('@angular-devkit/build-angular/plugins/karma')
require("karma-jasmine"),
require("karma-chrome-launcher"),
require("karma-jasmine-html-reporter"),
require("karma-coverage"),
require("@angular-devkit/build-angular/plugins/karma"),
],
client: {
jasmine: {
Expand All @@ -19,26 +19,23 @@ module.exports = function (config) {
// for example, you can disable the random execution with `random: false`
// or set a specific seed with `seed: 4321`
},
clearContext: false // leave Jasmine Spec Runner output visible in browser
clearContext: false, // leave Jasmine Spec Runner output visible in browser
},
jasmineHtmlReporter: {
suppressAll: true // removes the duplicated traces
suppressAll: true, // removes the duplicated traces
},
coverageReporter: {
dir: require('path').join(__dirname, './coverage/angular-basics'),
subdir: '.',
reporters: [
{ type: 'html' },
{ type: 'text-summary' }
]
dir: require("path").join(__dirname, "./coverage/angular-basics"),
subdir: ".",
reporters: [{ type: "html" }, { type: "text-summary" }],
},
reporters: ['progress', 'kjhtml'],
reporters: ["progress", "kjhtml"],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
browsers: ["Chrome"],
singleRun: false,
restartOnFileChange: true
restartOnFileChange: true,
});
};
Loading

0 comments on commit 1b268b9

Please sign in to comment.