Skip to content

Commit 3211aa1

Browse files
committed
chore: wip
1 parent 6fcb41b commit 3211aa1

File tree

3 files changed

+574
-193
lines changed

3 files changed

+574
-193
lines changed

.stacks/core/buddy/src/commands/dev.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ async function dev(buddy: CLI) {
2525
.option('-p, --views', descriptions.pages)
2626
.option('--verbose', descriptions.verbose, { default: false })
2727
.action(async (options: DevOptions) => {
28-
const perf = await intro('buddy dev')
29-
const result = await runAction(Action.Dev, { ...options, verbose: true })
28+
// const perf = await intro('buddy dev')
29+
// const result = await runAction(Action.Dev, { ...options, verbose: true })
3030

3131
if (hasNoOptions(options)) {
3232
const answer = await prompt.require()
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import { defineBuildConfig } from 'unbuild'
2+
3+
export default defineBuildConfig({
4+
entries: [
5+
{
6+
builder: 'mkdist',
7+
input: './src/',
8+
outDir: './dist/',
9+
format: 'esm',
10+
},
11+
],
12+
13+
clean: true,
14+
declaration: true,
15+
})

0 commit comments

Comments
 (0)