You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
172 lines
4.9 KiB
JavaScript
172 lines
4.9 KiB
JavaScript
'use strict';
|
|
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
const cproc = require('child_process');
|
|
|
|
const { paths, pluginNamePattern } = require('../constants');
|
|
|
|
const pkgInstall = module.exports;
|
|
|
|
function sortDependencies(dependencies) {
|
|
return Object.entries(dependencies)
|
|
.sort((a, b) => (a < b ? -1 : 1))
|
|
.reduce((memo, pkg) => {
|
|
memo[pkg[0]] = pkg[1];
|
|
return memo;
|
|
}, {});
|
|
}
|
|
|
|
pkgInstall.updatePackageFile = () => {
|
|
let oldPackageContents = {};
|
|
|
|
try {
|
|
oldPackageContents = JSON.parse(fs.readFileSync(paths.currentPackage, 'utf8'));
|
|
} catch (e) {
|
|
if (e.code !== 'ENOENT') {
|
|
throw e;
|
|
}
|
|
}
|
|
|
|
const defaultPackageContents = JSON.parse(fs.readFileSync(paths.installPackage, 'utf8'));
|
|
|
|
let dependencies = {};
|
|
Object.entries(oldPackageContents.dependencies || {}).forEach(([dep, version]) => {
|
|
if (pluginNamePattern.test(dep)) {
|
|
dependencies[dep] = version;
|
|
}
|
|
});
|
|
|
|
// Sort dependencies alphabetically
|
|
dependencies = sortDependencies({ ...dependencies, ...defaultPackageContents.dependencies });
|
|
|
|
const packageContents = { ...oldPackageContents, ...defaultPackageContents, dependencies: dependencies };
|
|
|
|
fs.writeFileSync(paths.currentPackage, JSON.stringify(packageContents, null, 2));
|
|
};
|
|
|
|
pkgInstall.supportedPackageManager = [
|
|
'npm',
|
|
'cnpm',
|
|
'pnpm',
|
|
'yarn',
|
|
];
|
|
|
|
pkgInstall.getPackageManager = () => {
|
|
try {
|
|
fs.accessSync(path.join(paths.nodeModules, 'nconf/package.json'), fs.constants.R_OK);
|
|
const nconf = require('nconf');
|
|
if (!Object.keys(nconf.stores).length) {
|
|
// Quick & dirty nconf setup for when you cannot rely on nconf having been required already
|
|
const configFile = path.resolve(__dirname, '../../', nconf.any(['config', 'CONFIG']) || 'config.json');
|
|
nconf.env().file({ // not sure why adding .argv() causes the process to terminate
|
|
file: configFile,
|
|
});
|
|
}
|
|
|
|
if (nconf.get('package_manager') && !pkgInstall.supportedPackageManager.includes(nconf.get('package_manager'))) {
|
|
nconf.clear('package_manager');
|
|
}
|
|
|
|
if (!nconf.get('package_manager')) {
|
|
// Best guess based on lockfile detection
|
|
try {
|
|
// use npm if lockfile present
|
|
fs.accessSync(path.resolve(__dirname, '../../package-lock.json'), fs.constants.R_OK);
|
|
} catch (e) {
|
|
nconf.set('package_manager', [
|
|
// no cnpm detection as it uses same lockfile as npm
|
|
'yarn.lock', 'pnpm-lock.yaml',
|
|
].reduce((result, cur) => {
|
|
if (result) {
|
|
return result;
|
|
}
|
|
|
|
try {
|
|
fs.accessSync(path.resolve(__dirname, `../../${cur}`), fs.constants.R_OK);
|
|
return cur.slice(0, 4);
|
|
} catch (e) {
|
|
return result;
|
|
}
|
|
}, undefined));
|
|
}
|
|
}
|
|
|
|
return nconf.get('package_manager') || 'npm';
|
|
} catch (e) {
|
|
// nconf not install or other unexpected error/exception
|
|
return 'npm';
|
|
}
|
|
};
|
|
|
|
pkgInstall.installAll = () => {
|
|
const prod = process.env.NODE_ENV !== 'development';
|
|
let command = 'npm install';
|
|
|
|
const supportedPackageManagerList = exports.supportedPackageManager; // load config from src/cli/package-install.js
|
|
const packageManager = pkgInstall.getPackageManager();
|
|
if (supportedPackageManagerList.indexOf(packageManager) >= 0) {
|
|
switch (packageManager) {
|
|
case 'yarn':
|
|
command = `yarn${prod ? ' --production' : ''}`;
|
|
break;
|
|
case 'pnpm':
|
|
command = 'pnpm install'; // pnpm checks NODE_ENV
|
|
break;
|
|
case 'cnpm':
|
|
command = `cnpm install ${prod ? ' --production' : ''}`;
|
|
break;
|
|
default:
|
|
command += prod ? ' --production' : '';
|
|
break;
|
|
}
|
|
}
|
|
|
|
try {
|
|
cproc.execSync(command, {
|
|
cwd: path.join(__dirname, '../../'),
|
|
stdio: [0, 1, 2],
|
|
});
|
|
} catch (e) {
|
|
console.log('Error installing dependencies!');
|
|
console.log(`message: ${e.message}`);
|
|
console.log(`stdout: ${e.stdout}`);
|
|
console.log(`stderr: ${e.stderr}`);
|
|
throw e;
|
|
}
|
|
};
|
|
|
|
pkgInstall.preserveExtraneousPlugins = () => {
|
|
// Skip if `node_modules/` is not found or inaccessible
|
|
try {
|
|
fs.accessSync(paths.nodeModules, fs.constants.R_OK);
|
|
} catch (e) {
|
|
return;
|
|
}
|
|
|
|
const packages = fs.readdirSync(paths.nodeModules)
|
|
.filter(pkgName => pluginNamePattern.test(pkgName));
|
|
|
|
const packageContents = JSON.parse(fs.readFileSync(paths.currentPackage, 'utf8'));
|
|
|
|
const extraneous = packages
|
|
// only extraneous plugins (ones not in package.json) which are not links
|
|
.filter((pkgName) => {
|
|
const extraneous = !packageContents.dependencies.hasOwnProperty(pkgName);
|
|
const isLink = fs.lstatSync(path.join(paths.nodeModules, pkgName)).isSymbolicLink();
|
|
|
|
return extraneous && !isLink;
|
|
})
|
|
// reduce to a map of package names to package versions
|
|
.reduce((map, pkgName) => {
|
|
const pkgConfig = JSON.parse(fs.readFileSync(path.join(paths.nodeModules, pkgName, 'package.json'), 'utf8'));
|
|
map[pkgName] = pkgConfig.version;
|
|
return map;
|
|
}, {});
|
|
|
|
// Add those packages to package.json
|
|
packageContents.dependencies = sortDependencies({ ...packageContents.dependencies, ...extraneous });
|
|
|
|
fs.writeFileSync(paths.currentPackage, JSON.stringify(packageContents, null, 2));
|
|
};
|