Files
vant/packages/vant-cli/src/commands/dev.ts
T

10 lines
241 B
TypeScript

import { clean } from '../commands/clean';
import { setNodeEnv } from '../common';
import { compileSite } from '../compiler/compile-site';
export async function dev() {
setNodeEnv('development');
await clean();
await compileSite();
}