Skip to content

Commit fdd3e74

Browse files
committed
chore: wip
1 parent 08ba9ad commit fdd3e74

File tree

10 files changed

+8
-157
lines changed

10 files changed

+8
-157
lines changed

resources/types/salient/app/(auth)/login/page.tsx

Lines changed: 0 additions & 59 deletions
This file was deleted.

resources/types/salient/app/(auth)/register/page.tsx

Lines changed: 0 additions & 88 deletions
This file was deleted.
Binary file not shown.

storage/framework/desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "stacks-app",
33
"type": "module",
4-
"private": "true",
54
"version": "0.51.0",
5+
"private": "true",
66
"description": "The Stacks Dashboard.",
77
"author": "Chris Breuer",
88
"license": "MIT",

storage/framework/stacks/core/actions/src/dev/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { log } from '@stacksjs/logging'
2-
import { runCommand } from '@stacksjs/cli'
32
import type { DevOptions } from '@stacksjs/types'
4-
import { Action, NpmScript } from '@stacksjs/enums'
3+
import { Action } from '@stacksjs/enums'
54
import { runAction } from '../helpers'
65

76
export async function runDevServer(options: DevOptions) {

storage/framework/stacks/core/env/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import p from 'node:process'
22
import fs from 'fs-extra'
33
import { projectPath } from '@stacksjs/path'
44
import { ValidationBoolean, ValidationEnum, ValidationNumber } from '@stacksjs/validation'
5-
import type { Env } from './types'
65
import type { EnvKey } from '../../../../stack/env'
6+
import type { Env } from './types'
77

88
// interface EnumObject {
99
// [key: string]: string[]

storage/framework/stacks/core/vite/src/components.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import { cssEngine } from './plugin/css-engine'
99
import { uiEngine } from './plugin/ui-engine'
1010
import { autoImports } from './plugin/auto-imports'
1111
import { inspect } from './plugin/inspect'
12-
import { stacks } from './plugin/stacks'
1312
import type { ViteBuildOptions } from '.'
1413

1514
const config = {

storage/framework/stacks/core/vite/src/desktop.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export const pagesConfig = {
4848
}),
4949

5050
pages({
51-
routesFolder: p.projectStoragePath('framework/dashboard/src/pages',),
51+
routesFolder: p.projectStoragePath('framework/dashboard/src/pages'),
5252
}),
5353

5454
UnoCSS({
@@ -76,7 +76,8 @@ export const pagesConfig = {
7676
} satisfies ViteConfig
7777

7878
export default defineConfig(({ command }) => {
79-
if (command === 'serve') return pagesConfig
79+
if (command === 'serve')
80+
return pagesConfig
8081

8182
// command === 'build'
8283
return pagesConfig

storage/framework/stacks/core/vite/src/views.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import { alias } from '@stacksjs/alias'
77
import { config } from '@stacksjs/config'
88

99
// import { i18n } from './plugin/i18n'
10-
import VueI18n from '@intlify/unplugin-vue-i18n/vite'
1110

1211
// import AutoImport from 'unplugin-auto-import/vite'
1312
import Markdown from 'unplugin-vue-markdown/vite'
@@ -18,11 +17,11 @@ import LinkAttributes from 'markdown-it-link-attributes'
1817
import Unocss from 'unocss/vite'
1918
import Shiki from 'markdown-it-shikiji'
2019
import VueRouter from 'unplugin-vue-router/vite'
20+
2121
// import { fonts } from './plugin/fonts'
2222
import { layouts } from './plugin/layouts'
2323
import { autoImports } from './plugin/auto-imports'
2424
import { components } from './plugin/components'
25-
import webfontDownload from 'vite-plugin-webfont-dl';
2625

2726
// const isMaintenanceMode = config.app.maintenanceMode
2827
// const maintenancePath = isMaintenanceMode ? '' : './maintenance'

storage/framework/stacks/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"../desktop/*",
6060
"./core/**/*.ts",
6161
"../types/*",
62-
"./scripts/*",
62+
"./scripts/*"
6363
],
6464
"exclude": [
6565
"../**/cdk.out",

0 commit comments

Comments
 (0)