Skip to content

Commit 8addd01

Browse files
chore: update version to 0.1.1 and change Node.js engine requirement to >=24
- Bump version from 0.1.0 to 0.1.1 in package.json - Update Node.js engine requirement from >=22 to >=24 - Remove pnpm-lock.yaml file
1 parent 677b02d commit 8addd01

File tree

9 files changed

+176
-598
lines changed

9 files changed

+176
-598
lines changed

.env.example

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
NITRO_PRESET=bun
2+
13
# Database
24
POSTGRES_USER=user
35
POSTGRES_PASSWORD=password

.npmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# node-linker = hoisted
1+
node-linker = hoisted
22
shamefully-hoist=true
33
strict-peer-dependencies=false

bun.lock

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

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"lint:fix": "eslint . --fix"
1515
},
1616
"dependencies": {
17-
"abckit": "^0.0.24",
17+
"abckit": "^0.0.28",
1818
"nuxt": "^4.2.2",
1919
"vue": "^3.5.25",
2020
"vue-router": "^4.6.4"

nuxt.config.ts

Lines changed: 4 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1+
import type { NitroGraphQLOptions } from 'nitro-graphql'
2+
13
// https://nuxt.com/docs/api/configuration/nuxt-config
24
export default defineNuxtConfig({
35
compatibilityDate: '2025-07-15',
4-
devtools: { enabled: true },
6+
devtools: { enabled: false },
57
modules: [
68
'abckit',
79
],
810
ssr: false,
9-
1011
css: [
1112
'~/assets/css/tailwind.css',
1213
'notivue/notification.css',
@@ -31,26 +32,6 @@ export default defineNuxtConfig({
3132
},
3233
},
3334
},
34-
},
35-
},
36-
37-
$development: {
38-
vite: {
39-
server: {
40-
allowedHosts: true,
41-
},
42-
},
43-
},
44-
45-
shadcn: {
46-
/**
47-
* Prefix for all the imported component
48-
*/
49-
prefix: '',
50-
/**
51-
* Directory that the component lives in.
52-
* @default "./components/ui"
53-
*/
54-
componentDir: '~/components/ui',
35+
} as NitroGraphQLOptions,
5536
},
5637
})

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"drizzle-orm": "^0.45.1",
3434
"graphql": "^16.12.0",
3535
"jsonwebtoken": "^9.0.3",
36+
"nitroping": "^0.1.0",
3637
"nuxt": "^4.2.2",
3738
"postgres": "^3.4.7",
3839
"undici": "^7.16.0",

0 commit comments

Comments
 (0)