mirror of
https://github.com/Damillora/Rinze.git
synced 2024-12-04 16:43:45 +00:00
Compare commits
3 Commits
93ac2532bb
...
ba4415cb9c
Author | SHA1 | Date | |
---|---|---|---|
ba4415cb9c | |||
9e0e9a4f8c | |||
aa1e9bad14 |
@ -1,10 +1,10 @@
|
||||
FROM node:16-alpine
|
||||
FROM node:20-alpine
|
||||
# install dependencies
|
||||
WORKDIR /app
|
||||
COPY . .
|
||||
RUN npm install
|
||||
RUN npm run build
|
||||
FROM node:16-alpine
|
||||
FROM node:20-alpine
|
||||
WORKDIR /app
|
||||
COPY --from=0 /app/build /app
|
||||
COPY --from=0 /app/package.json /app
|
||||
|
14
package-lock.json
generated
14
package-lock.json
generated
@ -8,7 +8,7 @@
|
||||
"name": "~TODO~",
|
||||
"version": "0.0.1",
|
||||
"dependencies": {
|
||||
"@damillora/plachta": "^6.2.0",
|
||||
"@damillora/plachta": "^6.3.0",
|
||||
"dayjs": "^1.11.7",
|
||||
"howler": "^2.2.3",
|
||||
"sass": "^1.58.0"
|
||||
@ -148,9 +148,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@damillora/plachta": {
|
||||
"version": "6.2.0",
|
||||
"resolved": "https://registry.npmjs.org/@damillora/plachta/-/plachta-6.2.0.tgz",
|
||||
"integrity": "sha512-wWveoCD7J/G4EieiuLHGpuPqYmg93OVWwHheTxuN2S2EMh5FWrGHdPh66VapneKV9ni6E0kR1TVDz1MGCyT/dw==",
|
||||
"version": "6.3.0",
|
||||
"resolved": "https://registry.npmjs.org/@damillora/plachta/-/plachta-6.3.0.tgz",
|
||||
"integrity": "sha512-cRjdAHnlprh9SSTg45QtWinom0+TisuJ4zB+lAWJDHqa1fxMqLgc6OKDcrXFbEn9rxICY8vSMv17Iwol/yocFA==",
|
||||
"dependencies": {
|
||||
"svelte": "^5.0.0"
|
||||
}
|
||||
@ -4035,9 +4035,9 @@
|
||||
}
|
||||
},
|
||||
"@damillora/plachta": {
|
||||
"version": "6.2.0",
|
||||
"resolved": "https://registry.npmjs.org/@damillora/plachta/-/plachta-6.2.0.tgz",
|
||||
"integrity": "sha512-wWveoCD7J/G4EieiuLHGpuPqYmg93OVWwHheTxuN2S2EMh5FWrGHdPh66VapneKV9ni6E0kR1TVDz1MGCyT/dw==",
|
||||
"version": "6.3.0",
|
||||
"resolved": "https://registry.npmjs.org/@damillora/plachta/-/plachta-6.3.0.tgz",
|
||||
"integrity": "sha512-cRjdAHnlprh9SSTg45QtWinom0+TisuJ4zB+lAWJDHqa1fxMqLgc6OKDcrXFbEn9rxICY8vSMv17Iwol/yocFA==",
|
||||
"requires": {
|
||||
"svelte": "^5.0.0"
|
||||
}
|
||||
|
@ -27,7 +27,7 @@
|
||||
},
|
||||
"type": "module",
|
||||
"dependencies": {
|
||||
"@damillora/plachta": "^6.2.0",
|
||||
"@damillora/plachta": "^6.3.0",
|
||||
"dayjs": "^1.11.7",
|
||||
"howler": "^2.2.3",
|
||||
"sass": "^1.58.0"
|
||||
|
@ -1,4 +1,5 @@
|
||||
<script lang="ts">
|
||||
import { navigating } from '$app/stores';
|
||||
import type { Snippet } from 'svelte';
|
||||
import {
|
||||
Base,
|
||||
@ -15,6 +16,9 @@
|
||||
}
|
||||
|
||||
let { children }: Props = $props();
|
||||
|
||||
let loading = $state(true);
|
||||
navigating.subscribe((x) => (loading = x != null));
|
||||
</script>
|
||||
|
||||
<Base>
|
||||
@ -33,5 +37,7 @@
|
||||
<FloatingYuriko />
|
||||
{/if}
|
||||
|
||||
<NavigationLoading {loading}/>
|
||||
|
||||
<style lang="scss" global>
|
||||
</style>
|
||||
|
Loading…
Reference in New Issue
Block a user