Skip to content

Commit 3e7dc46

Browse files
committed
build: upgrade to Angular 18
1 parent 274354a commit 3e7dc46

20 files changed

Lines changed: 7673 additions & 10361 deletions

.browserslistrc

Lines changed: 0 additions & 12 deletions
This file was deleted.

.husky/commit-msg

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
#!/bin/sh
2-
. "$(dirname "$0")/_/husky.sh"
3-
41
npx --no-install commitlint --edit "$1" --quiet ||
52
(
63
echo -e "\n❌ Please check commit message format! \n"

.husky/pre-commit

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
#!/bin/sh
2-
. "$(dirname "$0")/_/husky.sh"
3-
41
npx lint-staged --quiet ||
52
(
63
echo -e "\n❌ Prettier formatting failed!\n"

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:14.19.1-alpine As builder
1+
FROM node:alpine As builder
22

33
WORKDIR /usr/src/app
44

@@ -10,6 +10,6 @@ COPY . .
1010

1111
RUN npm run build --prod
1212

13-
FROM nginx:1.15.8-alpine
13+
FROM nginx:alpine
1414

1515
COPY --from=builder /usr/src/app/dist/angular-starter/ /usr/share/nginx/html

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
> The Angular starter / boilerplate project to start a new enterprise project.
44
5-
[Angular 17](https://angular.io/)
5+
[Angular 18](https://angular.dev/)
66
[Angular Material](https://material.angular.io/)
77
✅ Unit Testing with [Jest](https://jestjs.io/)
88
✅ End-to-End Testing with [Cypress](https://www.cypress.io/)
9-
✅ Internationalization with [Transloco](https://github.com/ngneat/transloco)
9+
✅ Internationalization with [Transloco](https://github.com/jsverse/transloco)
1010
✅ Auto documentation with [Compodoc](https://compodoc.app/)
1111
✅ Provide component examples with [Storybook](https://storybook.js.org/)
1212
✅ Analyse your project with [source-map-explorer](https://www.npmjs.com/package/source-map-explorer)
@@ -19,7 +19,7 @@
1919

2020
<hr>
2121

22-
![Angular17](https://img.shields.io/badge/Angular-17-brightgreen)
22+
![Angular18](https://img.shields.io/badge/Angular-18-brightgreen)
2323
[![MIT](https://img.shields.io/packagist/l/doctrine/orm.svg)]()
2424
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=wlucha_angular-starter&metric=alert_status)](https://sonarcloud.io/dashboard?id=wlucha_angular-starter)
2525
[![Docker Pulls](https://img.shields.io/docker/pulls/wlucha/angular-starter)](https://hub.docker.com/repository/docker/wlucha/angular-starter)

app.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "Angular 14 Starter",
3-
"description": "Angular 14 Starter project with Material, Transloco, Jest & Compodoc",
2+
"name": "Angular 18 Starter",
3+
"description": "Angular 18 Starter project with Material, Transloco, Jest & Compodoc",
44
"repository": "https://github.com/wlucha/angular-starter",
55
"keywords": ["angular", "jest", "compodoc", "transloco"]
66
}

junit.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<testsuites name="jest tests" tests="0" failures="0" errors="0" time="7.627">
3+
</testsuites>

0 commit comments

Comments
 (0)