"use strict"; const { Bundler, expand } = require( "../../export.utils" ); const template = require( "../../templates/article" ); module.exports = Bundler.create( { script: __filename, check: expand( "tools/benchmark" ), config: { entry: expand( "tools/benchmark/browser.stub.js" ), library: [ "peg", "benchmark" ], output: expand( "public/js/benchmark-bundle.min.js" ), }, next() { return template( { title: "Benchmark", content: `
times
Test Input Size Average Parse Time Average Parse Speed
No results available yet.
`, } ); }, } );