Upgraded dependencies, bumped to Node 24.
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
<script setup>
|
||||
import Actors from '#/components/actors/actors.vue';
|
||||
import Stash from '#/components/stashes/stash.vue';
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Stash>
|
||||
<Actors />
|
||||
</Stash>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import Stash from '#/components/stashes/stash.vue';
|
||||
import Actors from '#/components/actors/actors.vue';
|
||||
</script>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
import { render } from 'vike/abort'; /* eslint-disable-line import/extensions */
|
||||
import { render } from 'vike/abort';
|
||||
|
||||
import { fetchStashByUsernameAndSlug } from '#/src/stashes.js';
|
||||
import { fetchActors } from '#/src/actors.js';
|
||||
import { curateActorsQuery } from '#/src/web/actors.js';
|
||||
import { HttpError } from '#/src/errors.js';
|
||||
import { fetchStashByUsernameAndSlug } from '#/src/stashes.js';
|
||||
import { curateActorsQuery } from '#/src/web/actors.js';
|
||||
|
||||
export async function onBeforeRender(pageContext) {
|
||||
try {
|
||||
@@ -39,7 +39,8 @@ export async function onBeforeRender(pageContext) {
|
||||
},
|
||||
},
|
||||
};
|
||||
} catch (error) {
|
||||
}
|
||||
catch (error) {
|
||||
if (error instanceof HttpError) {
|
||||
throw render(error.httpCode, error.message);
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
<script setup>
|
||||
import Movies from '#/components/movies/movies.vue';
|
||||
import Stash from '#/components/stashes/stash.vue';
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Stash>
|
||||
<Movies />
|
||||
</Stash>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import Stash from '#/components/stashes/stash.vue';
|
||||
import Movies from '#/components/movies/movies.vue';
|
||||
</script>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
import { render } from 'vike/abort'; /* eslint-disable-line import/extensions */
|
||||
import { render } from 'vike/abort';
|
||||
|
||||
import { fetchStashByUsernameAndSlug } from '#/src/stashes.js';
|
||||
import { fetchMovies } from '#/src/movies.js';
|
||||
import { curateMoviesQuery } from '#/src/web/movies.js';
|
||||
import { HttpError } from '#/src/errors.js';
|
||||
import { fetchMovies } from '#/src/movies.js';
|
||||
import { fetchStashByUsernameAndSlug } from '#/src/stashes.js';
|
||||
import { curateMoviesQuery } from '#/src/web/movies.js';
|
||||
|
||||
export async function onBeforeRender(pageContext) {
|
||||
try {
|
||||
@@ -28,7 +28,8 @@ export async function onBeforeRender(pageContext) {
|
||||
},
|
||||
},
|
||||
};
|
||||
} catch (error) {
|
||||
}
|
||||
catch (error) {
|
||||
if (error instanceof HttpError) {
|
||||
throw render(error.httpCode, error.message);
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
<script setup>
|
||||
import Scenes from '#/components/scenes/scenes.vue';
|
||||
import Stash from '#/components/stashes/stash.vue';
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Stash>
|
||||
<Scenes />
|
||||
</Stash>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import Stash from '#/components/stashes/stash.vue';
|
||||
import Scenes from '#/components/scenes/scenes.vue';
|
||||
</script>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
import { render } from 'vike/abort'; /* eslint-disable-line import/extensions */
|
||||
import { render } from 'vike/abort';
|
||||
|
||||
import { fetchStashByUsernameAndSlug } from '#/src/stashes.js';
|
||||
import { fetchScenes } from '#/src/scenes.js';
|
||||
import { curateScenesQuery } from '#/src/web/scenes.js';
|
||||
import { HttpError } from '#/src/errors.js';
|
||||
import { fetchScenes } from '#/src/scenes.js';
|
||||
import { fetchStashByUsernameAndSlug } from '#/src/stashes.js';
|
||||
import { curateScenesQuery } from '#/src/web/scenes.js';
|
||||
|
||||
export async function onBeforeRender(pageContext) {
|
||||
try {
|
||||
@@ -29,7 +29,8 @@ export async function onBeforeRender(pageContext) {
|
||||
},
|
||||
},
|
||||
};
|
||||
} catch (error) {
|
||||
}
|
||||
catch (error) {
|
||||
if (error instanceof HttpError) {
|
||||
throw render(error.httpCode, error.message);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user