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

🎉 8.0.0 #606

Merged
merged 18 commits into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
5de3f74
Merge branch main into develop [skip ci]
sebbo2002 Aug 4, 2024
5008d01
chore(deps): Update all development npm dependencies (2024-08-13)
depfu[bot] Aug 13, 2024
40da9fe
Merge pull request #603 from sebbo2002/depfu/batch_dev/npm/2024-08-13
sebbo2002 Aug 13, 2024
88dc92d
chore(release): :bookmark: 7.2.1-develop.1 [skip ci]
semantic-release-bot Aug 13, 2024
5f621c3
chore(deps): Update all development npm dependencies (2024-08-20)
depfu[bot] Aug 20, 2024
ab2bb42
Merge pull request #605 from sebbo2002/depfu/batch_dev/npm/2024-08-20
sebbo2002 Aug 20, 2024
88f6523
chore(release): :bookmark: 7.2.1-develop.2 [skip ci]
semantic-release-bot Aug 20, 2024
732f854
Reapply "chore: Replace ts-node with tsx"
sebbo2002 Aug 20, 2024
0b508c4
docs(Reference): Adopt logo to light/dark mode in typedoc
sebbo2002 Aug 20, 2024
53f3d0e
docs(Reference): Replace @alias with @see tags
sebbo2002 Aug 20, 2024
04d0721
docs(Readme): Absolute link for examples folder
sebbo2002 Aug 20, 2024
8580f16
chore(release): :bookmark: 7.2.1-develop.3 [skip ci]
semantic-release-bot Aug 20, 2024
50721d3
docs(Reference): Fix light mode typedoc logo
sebbo2002 Aug 20, 2024
7ae576c
chore(release): :bookmark: 7.2.1-develop.4 [skip ci]
semantic-release-bot Aug 20, 2024
724f5fd
Reapply "chore: Replace ts-node with tsx"
sebbo2002 Aug 20, 2024
2fff079
chore: Drop support for node.js v19 and v21
sebbo2002 Aug 20, 2024
481451f
Merge remote-tracking branch 'template/typescript' into develop
sebbo2002 Aug 20, 2024
17f210e
chore(release): :bookmark: 8.0.0-develop.1 [skip ci]
semantic-release-bot Aug 20, 2024
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
4 changes: 0 additions & 4 deletions .github/workflows/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@ fi;
mkdir -p ./docs/
rm -rf ./docs/coverage/ ./docs/reference/ ./docs/tests/

# Remove Dark Mode Logo
git checkout -- ./README.md
awk 'NR < 8 || NR > 10' ./README.md > temp && mv -f temp ./README.md

# TypeDoc in ./docs/referece
npx typedoc

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
if: github.repository != 'sebbo2002/js-template' && (contains(toJson(github.event.commits.*.message), '[skip ci]') == false || github.ref == 'refs/heads/main')
strategy:
matrix:
node: [18.x, 20.x, current]
node: [18.x, 20.x, 22.x, current]
steps:
- name: ☁️ Checkout Project
uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions .mocharc.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
loader:
- ts-node/esm
full-trace: true
recursive: true
extension:
- ts
full-trace: true
node-option:
- import=tsx
recursive: true
6 changes: 1 addition & 5 deletions .nycrc
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
{
"cache": false,
"check-coverage": true,
"extension": [
".ts"
],
"extends": "@istanbuljs/nyc-config-typescript",
"include": [
"src/**/*.ts"
],
Expand All @@ -21,7 +18,6 @@
"html"
],
"all": true,
"instrument": true,
"branches": 95,
"lines": 95,
"functions": 100,
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ http.createServer((req, res) => {
console.log('Server running at http://127.0.0.1:3000/');
});
```
See the [examples](./examples) folder for more examples.
See the [examples](https://github.com/sebbo2002/ical-generator/tree/develop/examples) folder for more examples.

## 📑 API-Reference

Expand Down
Loading
Loading