Skip to content

Commit 40a5077

Browse files
committed
chore: wip
1 parent 36473fa commit 40a5077

File tree

20 files changed

+139
-103
lines changed

20 files changed

+139
-103
lines changed

bun.lockb

24 Bytes
Binary file not shown.

bunfig.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,7 @@ disableManifest = false
6767

6868
# whether to save the lockfile to disk
6969
save = true
70+
71+
[run]
72+
# equivalent to `bun --bun` for all `bun run` commands
73+
bun = true

storage/framework/core/actions/build.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ const result = await Bun.build({
5959
],
6060

6161
external: [
62+
'@stacksjs/api',
6263
'@stacksjs/path',
6364
'@stacksjs/cli',
6465
'@stacksjs/types',

storage/framework/core/actions/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
"prepublishOnly": "bun run build"
4747
},
4848
"dependencies": {
49+
"@stacksjs/api": "workspace:*",
4950
"@stacksjs/cli": "workspace:*",
5051
"@stacksjs/config": "workspace:*",
5152
"@stacksjs/database": "workspace:*",

storage/framework/core/alias/src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ export const alias: Record<string, string> = {
1515
'@stacksjs/arrays': p.arraysPath('src/index.ts'),
1616
'@stacksjs/arrays/*': p.arraysPath('src/*'),
1717
'@stacksjs/auth': p.authPath('src/index.ts'),
18+
'@stacksjs/api/*': p.coreApiPath('src/*'),
19+
'@stacksjs/api': p.coreApiPath('src/index.ts'),
1820
'@stacksjs/auth/*': p.authPath('src/*'),
1921
'@stacksjs/build': p.buildPath('src/index.ts'),
2022
'@stacksjs/build/*': p.buildPath('src/*'),

storage/framework/core/components/auth/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { createApp } from 'vue'
33
import App from './App.vue'
44

55
import '@unocss/reset/tailwind.css'
6-
import 'uno.css'
6+
import 'unocss'
77
import highlight from './plugins/highlight'
88

99
const app = createApp(App)

storage/framework/core/components/calendar/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { createApp } from 'vue'
33
import App from './App.vue'
44

55
import '@unocss/reset/tailwind.css'
6-
import 'uno.css'
6+
import 'unocss'
77
import highlight from './plugins/highlight'
88

99
const app = createApp(App)

storage/framework/core/components/dropdown/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { createApp } from 'vue'
33
import App from './App.vue'
44

55
import '@unocss/reset/tailwind.css'
6-
import 'uno.css'
6+
import 'unocss'
77
import highlight from './plugins/highlight'
88

99
const app = createApp(App)

storage/framework/core/components/modal/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { createApp } from 'vue'
33
import App from './App.vue'
44

55
import '@unocss/reset/tailwind.css'
6-
import 'uno.css'
6+
import 'unocss'
77
import highlight from './plugins/highlight'
88

99
const app = createApp(App)

storage/framework/core/components/notification/components.d.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ export {}
77
/* prettier-ignore */
88
declare module 'vue' {
99
export interface GlobalComponents {
10-
'Carbon:cafe': typeof import('~icons/carbon/cafe')['default']
11-
'Carbon:logoTwitter': typeof import('~icons/carbon/logo-twitter')['default']
1210
CheckIcon: typeof import('./src/components/icons/CheckIcon.vue')['default']
1311
CloseIcon: typeof import('./src/components/icons/CloseIcon.vue')['default']
1412
CopyIcon: typeof import('./src/components/icons/CopyIcon.vue')['default']
@@ -21,7 +19,6 @@ declare module 'vue' {
2119
InfoIcon: typeof import('./src/components/icons/InfoIcon.vue')['default']
2220
Installation: typeof import('./src/components/Installation.vue')['default']
2321
Loader: typeof import('./src/components/icons/Loader.vue')['default']
24-
'Mdi:heart': typeof import('~icons/mdi/heart')['default']
2522
Others: typeof import('./src/components/Others.vue')['default']
2623
Position: typeof import('./src/components/Position.vue')['default']
2724
RouterLink: typeof import('vue-router')['RouterLink']

0 commit comments

Comments
 (0)