Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[v19.0.0] Angular 19 Update #8

Merged
merged 4 commits into from
Feb 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
266 changes: 188 additions & 78 deletions .eslintrc.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @CodyTolene
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ patreon:
# https://tidelift.com/
tidelift:
# Custom URL
custom: ["https://www.paypal.me/CodyTolene"]
custom: ['https://www.paypal.me/CodyTolene']
5 changes: 5 additions & 0 deletions .github/images/ng-icons/Angular Material Icons.url
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,11
[InternetShortcut]
IDList=
URL=https://fonts.google.com/icons
12 changes: 12 additions & 0 deletions .github/images/ng-icons/email.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions .github/images/ng-icons/info.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions .github/images/ng-icons/warn.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
2 changes: 2 additions & 0 deletions .github/images/simple-icons/Simple Icons.url
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[InternetShortcut]
URL=https://github.com/simple-icons
15 changes: 15 additions & 0 deletions .github/images/simple-icons/bitcoin-btc-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions .github/images/simple-icons/buymeacoffee.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions .github/images/simple-icons/github.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions .github/workflows/on-merge-main-deploy-gpr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "16.x"
registry-url: "https://npm.pkg.github.com"
node-version: '20.x'
registry-url: 'https://npm.pkg.github.com'
- run: npm ci
- run: npm run npm-build-package
- run: cd dist/npm && npm publish
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/on-merge-main-deploy-npmjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "16.x"
registry-url: "https://registry.npmjs.org"
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run npm-build-package
- run: cd dist/npm && npm publish
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify-pull-request.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Verify Pull Request"
name: 'Verify Pull Request'
on: pull_request
jobs:
verify_pull_request:
Expand Down
29 changes: 1 addition & 28 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.
# See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.

# Compiled output
/dist
/dist/**/*
/tmp
/out-tsc
/bazel-out
Expand All @@ -21,9 +20,6 @@ yarn-error.log
.settings/
*.sublime-workspace

# IDE - Visual Studio
.vs/*

# Visual Studio Code
.vscode/*
!.vscode/settings.json
Expand All @@ -32,38 +28,15 @@ yarn-error.log
!.vscode/extensions.json
.history/*

# Husky Local Environment Files
/.husky/_

# Miscellaneous
.angular
.angular/
.angular/*
.angular/cache
/.angular/cache
.sass-cache/
/connect.lock
/coverage
/libpeerconnection.log
testem.log
/typings
ui-debug.log

# System files
.DS_Store
Thumbs.db

# Build and Release Folders
bin-debug/
bin-release/
[Oo]bj/
[Bb]in/

# Other files and folders
.settings/

# Executables
*.swf
*.air
*.ipa
*.apk
3 changes: 0 additions & 3 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npm run prettier
npm run lint
git add --update
14 changes: 10 additions & 4 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
# Ignore everything...
# Ignore everything
/*

# Except these files and directories:
# Make sure production files are ignored
dist/
public/

# Do not ignore the following files
!.github/
!.husky/
!e2e/src
!src/
!README.md

# Re-ignore sub-directories from the above exempt directories:
.github/CODEOWNERS
7 changes: 0 additions & 7 deletions .prettierrc.json

This file was deleted.

Loading