Skip to content

Commit

Permalink
build: release v1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
paulinek13 committed Dec 2, 2023
1 parent c06b9ad commit b8d1400
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "neso",
"version": "0.0.1",
"version": "1.0",
"private": true,
"scripts": {
"dev": "vite dev",
Expand All @@ -23,4 +23,4 @@
"svelte-check": "^3.6.2",
"tailwindcss": "^3.3.5"
}
}
}
10 changes: 10 additions & 0 deletions src/lib/components/organisms/Footer.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
<script>
import { _VERSION } from "$lib/utils.js";
</script>

<div
class="min-w-[300px] flex flex-wrap items-center justify-center p-4 gap-2 text-sm bg-stone-900 bg-opacity-50 border-t border-stone-800 text-stone-400"
>
<a
href="https://github.com/paulinek13/neso"
target="_blank"
class="px-4 py-[6px] font-[500] tracking-widest text-xs border border-stone-800 text-stone-300 hover:text-stone-100 border-l-orange-900 border-r-blue-900 border-t-orange-900 border-b-blue-900"
>v{_VERSION}</a
>
<a
href="https://github.com/paulinek13/neso"
target="_blank"
Expand Down
4 changes: 3 additions & 1 deletion src/lib/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,6 @@ export function today() {
if (String(day).length < 2) day = "0" + day;

return ({ year: `${year}`, month: `${month}`, day: `${day}`, full: `${year}-${month}-${day}` });
}
}

export const _VERSION = "1.0";

0 comments on commit b8d1400

Please sign in to comment.