Skip to content

Commit 72cf487

Browse files
committed
chore: update deps
1 parent d0cdeb8 commit 72cf487

4 files changed

Lines changed: 80 additions & 104 deletions

File tree

package-lock.json

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 51 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,53 @@
11
{
2-
"name": "angular-aside-wireframe",
3-
"version": "0.0.0",
4-
"scripts": {
5-
"ng": "ng",
6-
"start": "ng serve",
7-
"build": "ng build",
8-
"watch": "ng build --watch --configuration development",
9-
"test": "ng test",
2+
"name": "angular-initial-template",
3+
"version": "0.0.0",
4+
"scripts": {
5+
"ng": "ng",
6+
"start": "ng serve",
7+
"build": "ng build",
8+
"watch": "ng build --watch --configuration development",
9+
"test": "ng test",
1010
"test:ci": "ng test --no-watch --no-progress --browsers=ChromeHeadless",
11-
"lint": "ng lint",
12-
"format": "prettier --write \"src/**/*.ts\"",
13-
"format:check": "prettier --check \"src/**/*.ts\""
14-
},
15-
"private": true,
16-
"dependencies": {
17-
"@angular/animations": "^17.3.0",
18-
"@angular/common": "^17.3.0",
19-
"@angular/compiler": "^17.3.0",
20-
"@angular/core": "^17.3.0",
21-
"@angular/forms": "^17.3.0",
22-
"@angular/platform-browser": "^17.3.0",
23-
"@angular/platform-browser-dynamic": "^17.3.0",
24-
"@angular/router": "^17.3.0",
25-
"rxjs": "~7.8.0",
26-
"tslib": "^2.3.0",
27-
"zone.js": "~0.14.3"
28-
},
29-
"devDependencies": {
30-
"@angular-devkit/build-angular": "^17.3.9",
31-
"@angular-eslint/builder": "17.5.3",
32-
"@angular-eslint/eslint-plugin": "17.5.3",
33-
"@angular-eslint/eslint-plugin-template": "17.5.3",
34-
"@angular-eslint/schematics": "17.5.3",
35-
"@angular-eslint/template-parser": "17.5.3",
36-
"@angular/cli": "^17.3.9",
37-
"@angular/compiler-cli": "^17.3.0",
38-
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
39-
"@types/jasmine": "~5.1.0",
40-
"@typescript-eslint/eslint-plugin": "^7.11.0",
41-
"@typescript-eslint/parser": "7.11.0",
42-
"eslint": "^8.57.0",
43-
"eslint-config-prettier": "^9.1.0",
44-
"jasmine-core": "~5.1.0",
45-
"karma": "~6.4.0",
46-
"karma-chrome-launcher": "~3.2.0",
47-
"karma-coverage": "~2.2.0",
48-
"karma-jasmine": "~5.1.0",
49-
"karma-jasmine-html-reporter": "~2.1.0",
50-
"prettier": "3.3.3",
51-
"typescript": "~5.4.2"
52-
}
53-
}
11+
"lint": "ng lint",
12+
"format": "prettier --write \"src/**/*.ts\"",
13+
"format:check": "prettier --check \"src/**/*.ts\""
14+
},
15+
"private": true,
16+
"dependencies": {
17+
"@angular/animations": "^17.3.12",
18+
"@angular/common": "^17.3.12",
19+
"@angular/compiler": "^17.3.12",
20+
"@angular/core": "^17.3.12",
21+
"@angular/forms": "^17.3.12",
22+
"@angular/platform-browser": "^17.3.12",
23+
"@angular/platform-browser-dynamic": "^17.3.12",
24+
"@angular/router": "^17.3.12",
25+
"rxjs": "~7.8.0",
26+
"tslib": "^2.3.0",
27+
"zone.js": "~0.14.10"
28+
},
29+
"devDependencies": {
30+
"@angular-devkit/build-angular": "^17.3.10",
31+
"@angular-eslint/builder": "17.5.3",
32+
"@angular-eslint/eslint-plugin": "17.5.3",
33+
"@angular-eslint/eslint-plugin-template": "17.5.3",
34+
"@angular-eslint/schematics": "17.5.3",
35+
"@angular-eslint/template-parser": "17.5.3",
36+
"@angular/cli": "^17.3.10",
37+
"@angular/compiler-cli": "^17.3.12",
38+
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
39+
"@types/jasmine": "~5.1.0",
40+
"@typescript-eslint/eslint-plugin": "^7.11.0",
41+
"@typescript-eslint/parser": "7.11.0",
42+
"eslint": "^8.57.0",
43+
"eslint-config-prettier": "^9.1.0",
44+
"jasmine-core": "~5.1.2",
45+
"karma": "~6.4.0",
46+
"karma-chrome-launcher": "~3.2.0",
47+
"karma-coverage": "~2.2.0",
48+
"karma-jasmine": "~5.1.0",
49+
"karma-jasmine-html-reporter": "~2.1.0",
50+
"prettier": "3.3.3",
51+
"typescript": "~5.4.5"
52+
}
53+
}

src/app/pages/page-not-found/page-not-found.component.spec.ts

Lines changed: 0 additions & 23 deletions
This file was deleted.
Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
import { Component } from '@angular/core';
2-
import { RouterLink } from '@angular/router';
3-
4-
@Component({
5-
selector: 'app-page-not-found',
6-
standalone: true,
7-
imports: [RouterLink],
8-
templateUrl: './page-not-found.component.html',
9-
styleUrl: './page-not-found.component.scss'
10-
})
11-
export class PageNotFoundComponent {
12-
13-
}
1+
import { Component } from '@angular/core';
2+
3+
import { RouterLink } from '@angular/router';
4+
5+
@Component({
6+
selector: 'app-page-not-found',
7+
standalone: true,
8+
imports: [RouterLink],
9+
templateUrl: './page-not-found.component.html',
10+
styleUrl: './page-not-found.component.scss',
11+
})
12+
export class PageNotFoundComponent {}

0 commit comments

Comments
 (0)