48 lines
1.6 KiB
JavaScript
48 lines
1.6 KiB
JavaScript
|
const path = require('path');
|
||
|
const fs = require('fs');
|
||
|
|
||
|
class OutputSourcePlugin {
|
||
|
constructor({ output }) {
|
||
|
this.output = output;
|
||
|
}
|
||
|
apply(compiler) {
|
||
|
compiler.hooks.done.tap(
|
||
|
'OutputSourcePlugin',
|
||
|
({ compilation }) => {
|
||
|
let outputPath = compilation.compiler.outputPath,
|
||
|
configJSONs = [];
|
||
|
|
||
|
for (let index = 0; index < compilation.entries.length; index++) {
|
||
|
const resource = compilation.entries[index].resource;
|
||
|
if (fs.existsSync(path.join(resource, '../config.json'))) {
|
||
|
configJSONs.push(path.join(resource, '../config.json'))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
[...compilation.fileDependencies, ...configJSONs].forEach(file => {
|
||
|
if (!file.includes('node_modules')) {
|
||
|
let targetPath = path.resolve(
|
||
|
path.resolve(outputPath, typeof this.output === 'function' ? this.output(file) : this.output),
|
||
|
path.relative(path.resolve(__dirname, '../'), file),
|
||
|
), targetDir = path.resolve(targetPath, '../');
|
||
|
|
||
|
mkdir(targetDir);
|
||
|
|
||
|
fs.copyFileSync(file, targetPath);
|
||
|
// fs.writeFileSync(targetPath, fs.readFileSync(file));
|
||
|
}
|
||
|
});
|
||
|
},
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function mkdir(dir) {
|
||
|
if (!fs.existsSync(dir)) {
|
||
|
let parentDir = path.resolve(dir, '../');
|
||
|
mkdir(parentDir);
|
||
|
fs.mkdirSync(dir);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = OutputSourcePlugin;
|