"use strict"; const { Bundler, expand } = require( "../../export.utils" ); const template = require( "../../templates/article" ); module.exports = Bundler.create( { script: __filename, check: expand( "test" ), config: { entry: expand( "test/browser.stub.js" ), library: [ "peg", "test" ], output: expand( "public/js/test-bundle.min.js" ), }, next() { return template( { title: "Test", content: `
`, } ); }, } );