vanilla-beans
Version:
Thin layer on top of HTML and DOM API, dramatically simplify development of SPA using Vanilla Js.
11 lines (8 loc) • 321 B
JavaScript
import builder from '../builder/builder.mjs'
import path from 'path'
import { fileURLToPath } from 'url';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
builder(
path.resolve(__dirname, '../docs/examples/logo/beans/logo.beans.htm'),
path.resolve(__dirname, '../test/generated/logo.beans.js')
)