Skip to content

Commit ac71267

Browse files
committed
chore: wip
1 parent 7c0b75f commit ac71267

File tree

3 files changed

+54
-29
lines changed

3 files changed

+54
-29
lines changed

.stacks/core/config/build.config.ts

Lines changed: 52 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -6,44 +6,68 @@ export default defineBuildConfig({
66

77
externals: [
88
'stacks',
9-
'@novu/stateless',
9+
'stacks/utils',
10+
'stacks/validation',
11+
'stacks/path',
12+
'@stacksjs/ai',
13+
'@stacksjs/alias',
14+
'@stacksjs/analytics',
15+
'@stacksjs/auth',
16+
'@stacksjs/buddy',
17+
'@stacksjs/build',
18+
'@stacksjs/chat',
19+
'@stacksjs/database',
20+
'@stacksjs/datetime',
21+
'@stacksjs/desktop',
22+
'@stacksjs/email',
23+
'@stacksjs/events',
24+
'@stacksjs/health',
25+
'@stacksjs/notifications',
26+
'@stacksjs/objects',
27+
'@stacksjs/orm',
28+
'@stacksjs/payments',
29+
'@stacksjs/push',
30+
'@stacksjs/queue',
31+
'@stacksjs/realtime',
32+
'@stacksjs/router',
33+
'@stacksjs/scheduler',
34+
'@stacksjs/security',
35+
'@stacksjs/slug',
36+
'@stacksjs/sms',
37+
'@stacksjs/dns',
38+
'@stacksjs/cloud',
39+
'@stacksjs/cache',
40+
'@stacksjs/query-builder',
41+
'@stacksjs/actions',
42+
'@stacksjs/server',
43+
'@stacksjs/signals',
44+
'@stacksjs/search-engine',
45+
'@stacksjs/arrays',
46+
'@stacksjs/strings',
47+
'@stacksjs/cli',
48+
'@stacksjs/docs',
49+
'@stacksjs/repl',
50+
'@stacksjs/vite',
51+
'@stacksjs/ui',
52+
'@stacksjs/lint',
53+
'@stacksjs/logging',
54+
'@stacksjs/collections',
55+
'@stacksjs/faker',
56+
'@stacksjs/git',
57+
'@stacksjs/error-handling',
1058
'@stacksjs/storage',
1159
'@stacksjs/path',
1260
'@stacksjs/types',
1361
'@stacksjs/utils',
1462
'@stacksjs/validation',
15-
'@vinejs/vine',
16-
'c12',
17-
'macroable',
18-
'cac',
19-
'consola',
20-
'execa',
21-
'kolorist',
22-
'meilisearch',
23-
'neverthrow',
24-
'node-ray',
25-
'ora',
26-
'pathe',
27-
'rimraf',
28-
'semver',
29-
'vite',
30-
'vite-plugin-inspect',
31-
'vite-plugin-pwa',
32-
'vite-ssg',
33-
'vite-plugin-vue-layouts',
34-
'vitepress',
35-
'vue',
36-
'unocss',
37-
'unplugin-auto-import',
38-
'unplugin-vue-components',
39-
'yaml',
63+
'@stacksjs/development',
64+
'@stacksjs/testing',
4065
],
4166

4267
rollup: {
4368
alias,
44-
inlineDependencies: true,
4569
},
4670

4771
declaration: true,
48-
clean: false,
72+
clean: true,
4973
})

.stacks/core/error-handling/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { fs } from '@stacksjs/storage'
2-
import { log } from '@stacksjs/cli'
2+
import { italic, log } from '@stacksjs/cli'
33
import { logsPath } from '@stacksjs/path'
44

55
import type { StacksError, ValidationError } from '@stacksjs/types'

.stacks/core/search-engine/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { searchEngine } from '@stacksjs/config'
22
import type { UiEngine } from '@stacksjs/ui'
3+
import { useStorage } from '@stacksjs/utils'
34
import { client as meilisearch } from './drivers/meilisearch'
45
import { determineState } from './helpers'
56

0 commit comments

Comments
 (0)