Я пытаюсь связать все файлы .js в определенную папку, но получаю сообщение об ошибке: «нет такого файла или каталога».
Вот мой код:
const ClosureCompiler = require('google-closure-compiler').jsCompiler;
const { writeFile } = require('fs');
const closureCompiler = new ClosureCompiler({
js: 'c:/polyfill/**.js',
js_output_file: 'bundle.js'
});
const compilerProcess = closureCompiler.run([{
path: './',
}], (exitCode, stdOut, stdErr) => {
writeFile(stdOut[0].path, stdOut[0].src,()=>{});
});