(options)
| 85 | } |
| 86 | |
| 87 | async function buildNodeHighlightJS(options) { |
| 88 | const input = { ...config.rollup.core.input, input: `src/highlight.js` }; |
| 89 | const output = { ...config.rollup.node.output, file: `${process.env.BUILD_DIR}/lib/core.js` }; |
| 90 | output.footer = "highlight.HighlightJS = highlight;\nhighlight.default = highlight;"; |
| 91 | await rollupWrite(input, output); |
| 92 | if (options.esm) { |
| 93 | buildESMStub("core"); |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | function dual(file) { |
| 98 | return { |
no test coverage detected
searching dependent graphs…