UNPKG

@strapi/pack-up

Version:

Simple tools for creating interoperable CJS & ESM packages.

9 lines (8 loc) 275 B
import type { ViteBaseTask } from './types'; import type { TaskHandler } from '../index'; interface ViteBuildTask extends ViteBaseTask { type: 'build:js'; } declare const viteBuildTask: TaskHandler<ViteBuildTask>; export { viteBuildTask }; export type { ViteBuildTask };