Skip to content

Commit c5f4d97

Browse files
committed
build: upgrade deps to latest
- Capitalize endpoint method names from sveltejs/kit#5513 - Upgrade e2e Banananation from NASA-AMMOS/aerie#238
1 parent dd83ba9 commit c5f4d97

File tree

7 files changed

+103
-103
lines changed

7 files changed

+103
-103
lines changed
2 Bytes
Binary file not shown.

package-lock.json

Lines changed: 93 additions & 93 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@
3838
"dependencies": {
3939
"@nasa-jpl/stellar": "^1.0.3",
4040
"@sveltejs/adapter-node": "1.0.0-next.81",
41-
"@sveltejs/kit": "1.0.0-next.374",
41+
"@sveltejs/kit": "1.0.0-next.377",
4242
"bootstrap": "^5.1.3",
43-
"bootstrap-icons": "^1.9.0",
43+
"bootstrap-icons": "^1.9.1",
4444
"cookie": "^0.5.0",
4545
"d3-axis": "^3.0.0",
4646
"d3-brush": "^3.0.0",
@@ -62,7 +62,7 @@
6262
"toastify-js": "^1.11.2"
6363
},
6464
"devDependencies": {
65-
"@playwright/test": "^1.23.3",
65+
"@playwright/test": "^1.23.4",
6666
"@testing-library/svelte": "^3.1.3",
6767
"@types/cookie": "^0.5.1",
6868
"@types/d3-axis": "^3.0.1",
@@ -78,7 +78,7 @@
7878
"@typescript-eslint/eslint-plugin": "^5.30.6",
7979
"@typescript-eslint/parser": "^5.30.6",
8080
"cloc": "^2.10.0",
81-
"eslint": "^8.19.0",
81+
"eslint": "^8.20.0",
8282
"eslint-config-prettier": "^8.5.0",
8383
"eslint-plugin-svelte3": "^4.0.0",
8484
"jsdom": "^20.0.0",
@@ -90,7 +90,7 @@
9090
"tslib": "^2.4.0",
9191
"typescript": "^4.7.4",
9292
"unique-names-generator": "^4.7.1",
93-
"vite": "^3.0.0",
94-
"vitest": "^0.18.0"
93+
"vite": "^3.0.2",
94+
"vitest": "^0.18.1"
9595
}
9696
}

src/routes/auth/login.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { RequestHandler } from '@sveltejs/kit';
22
import effects from '../../utilities/effects';
33

4-
export const post: RequestHandler = async event => {
4+
export const POST: RequestHandler = async event => {
55
const body: LoginRequestBody = await event.request.json();
66
const { password, username } = body;
77

src/routes/auth/logout.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { RequestHandler } from '@sveltejs/kit';
22
import effects from '../../utilities/effects';
33

4-
export const post: RequestHandler = async event => {
4+
export const POST: RequestHandler = async event => {
55
const { locals } = event;
66
const { user } = locals;
77
const { ssoToken = '' } = user;

src/routes/env/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { defaultEnv } from '../../stores/app';
22

3-
export async function get(): Promise<{ body: Env }> {
3+
export async function GET(): Promise<{ body: Env }> {
44
const { env } = process;
55

66
const AUTH_TYPE = env['AUTH_TYPE'] ?? defaultEnv.AUTH_TYPE;

src/routes/health/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export async function get(): Promise<{ body: { success: boolean } }> {
1+
export async function GET(): Promise<{ body: { success: boolean } }> {
22
return {
33
body: {
44
success: true,

0 commit comments

Comments
 (0)