Skip to content

Commit 4bcf250

Browse files
committed
fix: resolve lint errors
1 parent 38fb875 commit 4bcf250

14 files changed

+13
-6
lines changed

nuxt.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { icons as nimiqFlags } from 'nimiq-flags'
33
import { icons as nimiqIcons } from 'nimiq-icons'
44
import { defineNuxtConfig } from 'nuxt/config'
55
import * as v from 'valibot'
6-
import { scheduler } from 'node:timers/promises'
76

87
export default defineNuxtConfig({
98
modules: [

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"dependencies": {
3030
"@ai-sdk/openai": "catalog:utils",
31-
"@electric-sql/pglite": "^0.3.14",
31+
"@electric-sql/pglite": "catalog:database",
3232
"@nuxt/fonts": "catalog:framework",
3333
"@nuxt/icon": "catalog:framework",
3434
"@nuxt/image": "catalog:framework",

pnpm-workspace.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ catalog:
44

55
catalogs:
66
database:
7+
'@electric-sql/pglite': ^0.3.14
78
drizzle-kit: ^0.31.7
89
drizzle-orm: ^0.44.7
910
postgres: ^3.4.7

server/database/functions.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import type { Buffer } from 'node:buffer'
2-
31
/**
42
* PostgreSQL function type definitions
53
* Auto-generated from SQL files in database/functions/

server/database/migrations/meta/0000_snapshot.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,4 +422,4 @@
422422
"schemas": {},
423423
"tables": {}
424424
}
425-
}
425+
}

server/database/migrations/meta/_journal.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
"breakpoints": true
1111
}
1212
]
13-
}
13+
}

server/database/scripts/check-geometries.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import process from 'node:process'
12
import { consola } from 'consola'
23
import postgres from 'postgres'
34
import 'dotenv/config'

server/database/scripts/check-specific-tile.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import process from 'node:process'
12
import { consola } from 'consola'
23
import postgres from 'postgres'
34
import 'dotenv/config'

server/database/scripts/get-category-icons.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import process from 'node:process'
12
import { consola } from 'consola'
23

34
const logger = consola.withTag('get-icons')

server/database/scripts/inspect-tile.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import { Buffer } from 'node:buffer'
2+
import process from 'node:process'
13
import { consola } from 'consola'
24
import postgres from 'postgres'
35
import 'dotenv/config'

0 commit comments

Comments
 (0)