UNPKG

@vue-macros/test-utils

Version:

Test utilities for Vue Macros.

15 lines (11 loc) 769 B
export { RollupEscapeNullCharacterPlugin, RollupToStringPlugin, removeSpaces, testFixtures, testFixturesSkip } from '@sxzz/test-utils'; import { Options } from '@vitejs/plugin-vue-jsx'; import { Plugin, InputPluginOption } from 'rollup'; export { Oxc as UnpluginOxc } from 'unplugin-oxc'; export { default as RollupVue } from 'unplugin-vue/rollup'; export { default as RollupJson } from '@rollup/plugin-json'; export { nodeResolve as RollupNodeResolve } from '@rollup/plugin-node-resolve'; declare const RollupVueJsx: (options?: Options) => Plugin; declare const RollupRemoveVueFilePathPlugin: () => Plugin; declare function rollupBuild(file: string, plugins: InputPluginOption): Promise<string>; export { RollupRemoveVueFilePathPlugin, RollupVueJsx, rollupBuild };