Skip to content

Commit

Permalink
fix: show correct version number at login
Browse files Browse the repository at this point in the history
  • Loading branch information
phoebus-84 committed Apr 26, 2024
1 parent 79754ee commit f58672e
Show file tree
Hide file tree
Showing 4 changed files with 100 additions and 55 deletions.
38 changes: 29 additions & 9 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -1,10 +1,30 @@
{
"repositoryUrl": "[email protected]:ForkbombEu/verifier.git",
"dryRun": false,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
],
"branches": ["main"]
}
"repositoryUrl": "[email protected]:ForkbombEu/wallet.git",
"dryRun": false,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"pnpm-lock.yaml",
"package.json"
],
"message": "chore(release): 🚀 ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
],
"branches": [
"main"
]
}
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@
"@playwright/test": "^1.28.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.3",
"@semantic-release/release-notes-generator": "^12.1.0",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@types/eslint": "8.56.0",
Expand Down
110 changes: 65 additions & 45 deletions pnpm-lock.yaml

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

3 changes: 3 additions & 0 deletions svelte.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ const config = {
fallback: 'index.html',
precompress: false
}),
version: {
name: process.env.npm_package_version
},
alias: {
// $ui: './src/components',
$paraglide: './src/paraglide',
Expand Down

0 comments on commit f58672e

Please sign in to comment.