Skip to content

Commit ec1babd

Browse files
committed
chore: wip
chore: wip
1 parent c70d124 commit ec1babd

File tree

7 files changed

+13
-17
lines changed

7 files changed

+13
-17
lines changed

storage/framework/core/desktop/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@
5050
"dist"
5151
],
5252
"scripts": {
53-
"dev": "bun --bun vite ../../dashboard -c ../vite/src/desktop.ts",
53+
"dev": "bunx vite ../../dashboard -c ../vite/src/desktop.ts",
5454
"dev:app": "tauri dev",
5555
"build": "bun --bun build.ts",
56-
"build:app": "bun --bun vite build ../../dashboard -c ../vite/src/desktop.ts",
56+
"build:app": "bunx vite build ../../dashboard -c ../vite/src/desktop.ts",
5757
"tauri:build": "tauri build",
5858
"typecheck": "bun --bun tsc --noEmit",
5959
"prepublishOnly": "bun --bun run build"

storage/framework/core/music/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
],
3636
"scripts": {
3737
"build": "bun --bun build.ts",
38-
"build:app": "bun --bun vite build ../../../storage/framework/desktop/music -c ../../src/vite/src/music.ts",
39-
"dev": "bun --bun vite serve ../../../storage/framework/desktop/music -c ../../src/vite/src/music.ts",
38+
"build:app": "bunx vite build ../../../storage/framework/desktop/music -c ../../src/vite/src/music.ts",
39+
"dev": "bunx vite serve ../../../storage/framework/desktop/music -c ../../src/vite/src/music.ts",
4040
"dev:app": "tauri dev",
4141
"typecheck": "bun --bun tsc --noEmit"
4242
},

storage/framework/dashboard/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@
3939
"dist"
4040
],
4141
"scripts": {
42-
"dev": "bun --bun vite -c ../core/vite/src/desktop.ts",
42+
"dev": "bunx vite -c ../core/vite/src/desktop.ts",
4343
"dev:app": "tauri dev",
44-
"build": "bun --bun vite build -c ../core/vite/src/desktop.ts",
44+
"build": "bunx vite build -c ../core/vite/src/desktop.ts",
4545
"build:app": "tauri build",
4646
"prepublishOnly": "bun --bun run build",
4747
"typecheck": "bun --bun tsc --noEmit"

storage/framework/dashboard/src/main.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ import 'highlight.js/styles/atom-one-light.css'
77
import './styles/main.css'
88
import { createPinia } from 'pinia'
99
import App from './App.stx'
10-
11-
import 'uno.css'
10+
import 'unocss'
1211

1312
const pinia = createPinia()
1413
ViteSSG(

storage/framework/types/auto-imports.d.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ declare global {
285285
const emailPath: typeof import('../core/path/src/index')['emailPath']
286286
const encrypt: typeof import('../core/security/src/crypt')['encrypt']
287287
const ensureProjectIsInitialized: typeof import('../core/utils/src/helpers')['ensureProjectIsInitialized']
288-
const enums: typeof import('../core/index')['enums']
288+
const enums: typeof import('../core/env/src/index')['enums']
289289
const enumsPath: typeof import('../core/path/src/index')['enumsPath']
290290
const env: typeof import('../core/env/src/index')['env']
291291
const envKeys: typeof import('../env')['envKeys']
@@ -1208,10 +1208,9 @@ declare module 'vue' {
12081208
readonly emailPath: UnwrapRef<typeof import('../core/path/src/index')['emailPath']>
12091209
readonly encrypt: UnwrapRef<typeof import('../core/security/src/crypt')['encrypt']>
12101210
readonly ensureProjectIsInitialized: UnwrapRef<typeof import('../core/utils/src/helpers')['ensureProjectIsInitialized']>
1211-
readonly enums: UnwrapRef<typeof import('../core/index')['enums']>
1211+
readonly enums: UnwrapRef<typeof import('../core/env/src/index')['enums']>
12121212
readonly enumsPath: UnwrapRef<typeof import('../core/path/src/index')['enumsPath']>
12131213
readonly env: UnwrapRef<typeof import('../core/env/src/index')['env']>
1214-
readonly envKeys: UnwrapRef<typeof import('../env')['envKeys']>
12151214
readonly envSchema: UnwrapRef<typeof import('../core/env/src/types')['envSchema']>
12161215
readonly equal: UnwrapRef<typeof import('../core/utils/src/currency')['equal']>
12171216
readonly err: UnwrapRef<typeof import('../core/error-handling/src/index')['err']>
@@ -2110,10 +2109,9 @@ declare module '@vue/runtime-core' {
21102109
readonly emailPath: UnwrapRef<typeof import('../core/path/src/index')['emailPath']>
21112110
readonly encrypt: UnwrapRef<typeof import('../core/security/src/crypt')['encrypt']>
21122111
readonly ensureProjectIsInitialized: UnwrapRef<typeof import('../core/utils/src/helpers')['ensureProjectIsInitialized']>
2113-
readonly enums: UnwrapRef<typeof import('../core/index')['enums']>
2112+
readonly enums: UnwrapRef<typeof import('../core/env/src/index')['enums']>
21142113
readonly enumsPath: UnwrapRef<typeof import('../core/path/src/index')['enumsPath']>
21152114
readonly env: UnwrapRef<typeof import('../core/env/src/index')['env']>
2116-
readonly envKeys: UnwrapRef<typeof import('../env')['envKeys']>
21172115
readonly envSchema: UnwrapRef<typeof import('../core/env/src/types')['envSchema']>
21182116
readonly equal: UnwrapRef<typeof import('../core/utils/src/currency')['equal']>
21192117
readonly err: UnwrapRef<typeof import('../core/error-handling/src/index')['err']>

storage/framework/views/desktop/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@
3939
"dist"
4040
],
4141
"scripts": {
42-
"dev": "bun --bun vite -c ../../core/vite/src/desktop.ts",
42+
"dev": "bunx vite -c ../../core/vite/src/desktop.ts",
4343
"dev:app": "tauri dev",
44-
"build": "bun --bun vite build -c ../../core/vite/src/desktop.ts",
44+
"build": "bunx vite build -c ../../core/vite/src/desktop.ts",
4545
"build:app": "tauri build",
4646
"prepublishOnly": "bun --bun run build",
4747
"typecheck": "bun --bun tsc --noEmit"

storage/framework/views/desktop/src/main.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ import 'highlight.js/styles/atom-one-light.css'
77
import './styles/main.css'
88
import { createPinia } from 'pinia'
99
import App from './App.stx'
10-
11-
import 'uno.css'
10+
import 'unocss'
1211

1312
const pinia = createPinia()
1413
ViteSSG(

0 commit comments

Comments
 (0)