Glen Whitney
e0861ea157
I failed to find a satisfactory way to compile and import moo.js with fixed specifiers, so finally I just gave up and patched the distributed moo code to be an es6 module. Very ugly but it works. Resolves #1. Reviewed-on: #2 Co-authored-by: Glen Whitney <glen@studioinfinity.org> Co-committed-by: Glen Whitney <glen@studioinfinity.org>
10 lines
363 B
JavaScript
10 lines
363 B
JavaScript
import {stdin, argv} from 'node:process'
|
|
import {streamToString} from '../etc/streamToString.js'
|
|
|
|
const preamble = `// ES6 Module converted from https://github.com/no-context/moo
|
|
export default (((f) => f())(function () {
|
|
`
|
|
const umd = await streamToString(stdin)
|
|
const realStart = umd.indexOf(" 'use strict'")
|
|
console.log(preamble + umd.substring(realStart))
|