UNPKG

@soleil-se/build-app

Version:

Script for building WebApps, RESTApps and Widgets with Svelte in Sitevision.

12 lines (9 loc) 264 B
import fse from 'fs-extra'; async function createIndexFile(path) { if (!fse.existsSync(path)) { await fse.writeFile(path, '<div id="app_root"></div>'); } } export default function files({ dest }) { return () => createIndexFile(`${dest}/index.html`); }