44 lines
1.6 KiB
TypeScript
44 lines
1.6 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import * as fs from 'fs';
|
|
import * as path from 'path';
|
|
const { dirs } = require('../../npm/dirs') as { dirs: string[] };
|
|
|
|
function log(...args: any[]): void {
|
|
console.log(`[${new Date().toLocaleTimeString('en', { hour12: false })}]`, '[distro]', ...args);
|
|
}
|
|
|
|
function mixin(mixinPath: string) {
|
|
if (!fs.existsSync(`${mixinPath}/node_modules`)) {
|
|
log(`Skipping distro npm dependencies: ${mixinPath} (no node_modules)`);
|
|
return;
|
|
}
|
|
|
|
log(`Mixing in distro npm dependencies: ${mixinPath}`);
|
|
|
|
const distroPackageJson = JSON.parse(fs.readFileSync(`${mixinPath}/package.json`, 'utf8'));
|
|
const targetPath = path.relative('.build/distro/npm', mixinPath);
|
|
|
|
for (const dependency of Object.keys(distroPackageJson.dependencies)) {
|
|
fs.rmSync(`./${targetPath}/node_modules/${dependency}`, { recursive: true, force: true });
|
|
fs.cpSync(`${mixinPath}/node_modules/${dependency}`, `./${targetPath}/node_modules/${dependency}`, { recursive: true, force: true, dereference: true });
|
|
}
|
|
|
|
log(`Mixed in distro npm dependencies: ${mixinPath} ✔︎`);
|
|
}
|
|
|
|
function main() {
|
|
log(`Mixing in distro npm dependencies...`);
|
|
|
|
const mixinPaths = dirs.filter(d => /^.build\/distro\/npm/.test(d));
|
|
|
|
for (const mixinPath of mixinPaths) {
|
|
mixin(mixinPath);
|
|
}
|
|
}
|
|
|
|
main();
|