2020-02-14 00:52:16 +01:00
|
|
|
/*
|
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
const path = require('path');
|
|
|
|
const fsProm = require('fs').promises;
|
|
|
|
|
|
|
|
const rimraf = require('rimraf');
|
|
|
|
const glob = require('glob');
|
|
|
|
const mkdirp = require('mkdirp');
|
|
|
|
|
|
|
|
async function copy(hakEnv, moduleInfo) {
|
|
|
|
if (moduleInfo.cfg.prune) {
|
|
|
|
console.log("Removing " + moduleInfo.cfg.prune + " from " + moduleInfo.moduleOutDir);
|
|
|
|
// rimraf doesn't have a 'cwd' option: it always uses process.cwd()
|
|
|
|
// (and if you set glob.cwd it just breaks because it can't find the files)
|
|
|
|
const oldCwd = process.cwd();
|
|
|
|
try {
|
|
|
|
process.chdir(moduleInfo.moduleOutDir);
|
|
|
|
await new Promise((resolve, reject) => {
|
|
|
|
rimraf(moduleInfo.cfg.prune, {}, err => {
|
|
|
|
err ? reject(err) : resolve();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
} finally {
|
|
|
|
process.chdir(oldCwd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (moduleInfo.cfg.copy) {
|
|
|
|
console.log(
|
2021-06-22 18:22:53 +02:00
|
|
|
"Copying files from " +
|
|
|
|
moduleInfo.moduleBuildDir + " to " + moduleInfo.moduleOutDir,
|
2020-02-14 00:52:16 +01:00
|
|
|
);
|
|
|
|
const files = await new Promise(async (resolve, reject) => {
|
|
|
|
glob(moduleInfo.cfg.copy, {
|
|
|
|
nosort: true,
|
|
|
|
silent: true,
|
|
|
|
cwd: moduleInfo.moduleBuildDir,
|
|
|
|
}, (err, files) => {
|
|
|
|
err ? reject(err) : resolve(files);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
for (const f of files) {
|
|
|
|
console.log("\t" + f);
|
|
|
|
const src = path.join(moduleInfo.moduleBuildDir, f);
|
|
|
|
const dst = path.join(moduleInfo.moduleOutDir, f);
|
|
|
|
|
|
|
|
await mkdirp(path.dirname(dst));
|
|
|
|
await fsProm.copyFile(src, dst);
|
|
|
|
}
|
|
|
|
}
|
2020-02-17 15:49:26 +01:00
|
|
|
}
|
2020-02-14 00:52:16 +01:00
|
|
|
|
|
|
|
module.exports = copy;
|