Skip to content

Commit

Permalink
chore: add funding and gh actions (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
userquin authored Feb 4, 2023
1 parent 3d27a94 commit 54c89e8
Show file tree
Hide file tree
Showing 4 changed files with 85 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: antfu
20 changes: 20 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Release

on:
push:
tags:
- 'v*'

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- uses: actions/setup-node@v3
with:
node-version: 16.x

- run: npx changelogithub
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@vite-pwa/sveltekit",
"type": "module",
"version": "0.1.2",
"packageManager": "pnpm@7.18.1",
"packageManager": "pnpm@7.26.1",
"description": "Zero-config PWA for SvelteKit",
"author": "antfu <[email protected]>",
"license": "MIT",
Expand Down Expand Up @@ -46,7 +46,7 @@
"lint": "eslint .",
"lint-fix": "nr lint --fix",
"prepublishOnly": "npm run build",
"release": "npx bumpp --push --tag --commit && npm publish --access=public"
"release": "bumpp && npm publish"
},
"peerDependencies": {
"@sveltejs/kit": "^1.0.0",
Expand All @@ -59,6 +59,7 @@
"@types/node": "^18.11.13",
"@types/workbox-build": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"bumpp": "^8.2.1",
"eslint": "^8.29.0",
"svelte": "^3.54.0",
"typescript": "^4.9.4",
Expand Down
61 changes: 61 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 54c89e8

Please sign in to comment.