Skip to content

Commit

Permalink
build: upgrade to Angular 18
Browse files Browse the repository at this point in the history
  • Loading branch information
wlucha committed Aug 3, 2024
1 parent 274354a commit 3e7dc46
Show file tree
Hide file tree
Showing 20 changed files with 7,673 additions and 10,361 deletions.
12 changes: 0 additions & 12 deletions .browserslistrc

This file was deleted.

3 changes: 0 additions & 3 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx --no-install commitlint --edit "$1" --quiet ||
(
echo -e "\n❌ Please check commit message format! \n"
Expand Down
3 changes: 0 additions & 3 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx lint-staged --quiet ||
(
echo -e "\n❌ Prettier formatting failed!\n"
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:14.19.1-alpine As builder
FROM node:alpine As builder

WORKDIR /usr/src/app

Expand All @@ -10,6 +10,6 @@ COPY . .

RUN npm run build --prod

FROM nginx:1.15.8-alpine
FROM nginx:alpine

COPY --from=builder /usr/src/app/dist/angular-starter/ /usr/share/nginx/html
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

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

<hr>

![Angular17](https://img.shields.io/badge/Angular-17-brightgreen)
![Angular18](https://img.shields.io/badge/Angular-18-brightgreen)
[![MIT](https://img.shields.io/packagist/l/doctrine/orm.svg)]()
[![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)
[![Docker Pulls](https://img.shields.io/docker/pulls/wlucha/angular-starter)](https://hub.docker.com/repository/docker/wlucha/angular-starter)
Expand Down
4 changes: 2 additions & 2 deletions app.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Angular 14 Starter",
"description": "Angular 14 Starter project with Material, Transloco, Jest & Compodoc",
"name": "Angular 18 Starter",
"description": "Angular 18 Starter project with Material, Transloco, Jest & Compodoc",
"repository": "https://github.com/wlucha/angular-starter",
"keywords": ["angular", "jest", "compodoc", "transloco"]
}
3 changes: 3 additions & 0 deletions junit.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuites name="jest tests" tests="0" failures="0" errors="0" time="7.627">
</testsuites>
Loading

0 comments on commit 3e7dc46

Please sign in to comment.