Skip to content

Commit 955d0d6

Browse files
authored
v19.0.0 (#8)
* Upgrade to ng 19 * Update husky files. * Readme updates * Update github build to use node 20
1 parent 254db2a commit 955d0d6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+13805
-21420
lines changed

.eslintrc.json

+188-78
Large diffs are not rendered by default.

.github/CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @CodyTolene

.github/FUNDING.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ patreon:
2929
# https://tidelift.com/
3030
tidelift:
3131
# Custom URL
32-
custom: ["https://www.paypal.me/CodyTolene"]
32+
custom: ['https://www.paypal.me/CodyTolene']
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[{000214A0-0000-0000-C000-000000000046}]
2+
Prop3=19,11
3+
[InternetShortcut]
4+
IDList=
5+
URL=https://fonts.google.com/icons

.github/images/ng-icons/email.svg

+12
Loading

.github/images/ng-icons/info.svg

+15
Loading

.github/images/ng-icons/warn.svg

+15
Loading

.github/images/screenshots/.gitkeep

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[InternetShortcut]
2+
URL=https://github.com/simple-icons
Loading
Loading
+1
Loading

.github/workflows/on-merge-main-deploy-gpr.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
- uses: actions/checkout@v3
1818
- uses: actions/setup-node@v3
1919
with:
20-
node-version: "16.x"
21-
registry-url: "https://npm.pkg.github.com"
20+
node-version: '20.x'
21+
registry-url: 'https://npm.pkg.github.com'
2222
- run: npm ci
2323
- run: npm run npm-build-package
2424
- run: cd dist/npm && npm publish

.github/workflows/on-merge-main-deploy-npmjs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
- uses: actions/checkout@v3
1414
- uses: actions/setup-node@v3
1515
with:
16-
node-version: "16.x"
17-
registry-url: "https://registry.npmjs.org"
16+
node-version: '20.x'
17+
registry-url: 'https://registry.npmjs.org'
1818
- run: npm ci
1919
- run: npm run npm-build-package
2020
- run: cd dist/npm && npm publish

.github/workflows/verify-pull-request.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "Verify Pull Request"
1+
name: 'Verify Pull Request'
22
on: pull_request
33
jobs:
44
verify_pull_request:

.gitignore

+1-28
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
# See http://help.github.com/ignore-files/ for more about ignoring files.
1+
# See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
22

33
# Compiled output
44
/dist
5-
/dist/**/*
65
/tmp
76
/out-tsc
87
/bazel-out
@@ -21,9 +20,6 @@ yarn-error.log
2120
.settings/
2221
*.sublime-workspace
2322

24-
# IDE - Visual Studio
25-
.vs/*
26-
2723
# Visual Studio Code
2824
.vscode/*
2925
!.vscode/settings.json
@@ -32,38 +28,15 @@ yarn-error.log
3228
!.vscode/extensions.json
3329
.history/*
3430

35-
# Husky Local Environment Files
36-
/.husky/_
37-
3831
# Miscellaneous
39-
.angular
40-
.angular/
41-
.angular/*
42-
.angular/cache
4332
/.angular/cache
4433
.sass-cache/
4534
/connect.lock
4635
/coverage
4736
/libpeerconnection.log
4837
testem.log
4938
/typings
50-
ui-debug.log
5139

5240
# System files
5341
.DS_Store
5442
Thumbs.db
55-
56-
# Build and Release Folders
57-
bin-debug/
58-
bin-release/
59-
[Oo]bj/
60-
[Bb]in/
61-
62-
# Other files and folders
63-
.settings/
64-
65-
# Executables
66-
*.swf
67-
*.air
68-
*.ipa
69-
*.apk

.husky/pre-commit

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
#!/usr/bin/env sh
2-
. "$(dirname -- "$0")/_/husky.sh"
3-
41
npm run prettier
52
npm run lint
63
git add --update

.prettierignore

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1-
# Ignore everything...
1+
# Ignore everything
22
/*
33

4-
# Except these files and directories:
4+
# Make sure production files are ignored
5+
dist/
6+
public/
7+
8+
# Do not ignore the following files
59
!.github/
6-
!.husky/
7-
!e2e/src
810
!src/
11+
!README.md
12+
13+
# Re-ignore sub-directories from the above exempt directories:
14+
.github/CODEOWNERS

.prettierrc.json

-7
This file was deleted.

0 commit comments

Comments
 (0)