refactor: move pushover into sub package, pull config into config package

Signed-off-by: Alix von Schirp <github@avonschirp.bootmedia.de>
This commit is contained in:
2025-10-22 04:46:36 +02:00
parent a8e03e5912
commit 8984a61ec8
17 changed files with 1652 additions and 175 deletions

76
.gitignore vendored
View File

@@ -1,38 +1,38 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# production
docs/
dist/
# misc
.DS_Store
*.pem
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
# local env files
# do not commit any .env files to git, except for the .env.example file.
.env
.env*.local
# typescript
*.tsbuildinfo
# eslint
.eslintcache
# idea files
.idea
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/**/node_modules
/.pnp
.pnp.js
# testing
/coverage
# production
docs/
dist/
# misc
.DS_Store
*.pem
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
# local env files
# do not commit any .env files to git, except for the .env.example file.
.env
.env*.local
# typescript
*.tsbuildinfo
# eslint
.eslintcache
# idea files
.idea