Skip to content

Commit

Permalink
Merge pull request #606 from sebbo2002/develop
Browse files Browse the repository at this point in the history
  • Loading branch information
sebbo2002 authored Aug 26, 2024
2 parents 504324e + 17f210e commit 5a15ca1
Show file tree
Hide file tree
Showing 21 changed files with 310 additions and 383 deletions.
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

0 comments on commit 5a15ca1

Please sign in to comment.