127 lines
4.3 KiB
Plaintext
127 lines
4.3 KiB
Plaintext
const _ = require('lodash');
|
|
const Factory = require('./plugin/factory');
|
|
const Logger = require('./log');
|
|
const Config = require('./config');
|
|
const Shell = require('./shell');
|
|
const Prompt = require('./prompt');
|
|
const Spinner = require('./spinner');
|
|
const Metrics = require('./metrics');
|
|
const { reduceUntil, parseVersion } = require('./util');
|
|
const handleDeprecated = require('./deprecated');
|
|
|
|
const runTasks = async (opts, di) => {
|
|
let container = {};
|
|
|
|
try {
|
|
Object.assign(container, di);
|
|
container.config = container.config || new Config(opts);
|
|
|
|
const { config } = container;
|
|
const { isCI, isVerbose, verbosityLevel, isDryRun } = config;
|
|
|
|
container.log = container.log || new Logger({ isCI, isVerbose, verbosityLevel, isDryRun });
|
|
container.spinner = container.spinner || new Spinner({ container, config });
|
|
container.prompt = container.prompt || new Prompt({ container: { config } });
|
|
container.metrics = new Metrics({ isEnabled: config.isCollectMetrics });
|
|
container.shell = container.shell || new Shell({ container });
|
|
|
|
const { log, metrics, shell, spinner } = container;
|
|
|
|
const options = handleDeprecated(config.getContext(), log);
|
|
|
|
metrics.trackEvent('start', options);
|
|
|
|
const { hooks } = options;
|
|
|
|
const runHook = async (...name) => {
|
|
const scripts = hooks[name.join(':')];
|
|
if (!scripts || !scripts.length) return;
|
|
const context = config.getContext();
|
|
const external = true;
|
|
for (const script of _.castArray(scripts)) {
|
|
const task = () => shell.exec(script, { external }, context);
|
|
await spinner.show({ task, label: script, context, external });
|
|
}
|
|
};
|
|
|
|
const runLifeCycleHook = async (plugin, name, ...args) => {
|
|
if (plugin === _.first(plugins)) await runHook('before', name);
|
|
await runHook('before', plugin.namespace, name);
|
|
const willHookRun = (await plugin[name](...args)) !== false;
|
|
if (willHookRun) {
|
|
await runHook('after', plugin.namespace, name);
|
|
}
|
|
if (plugin === _.last(plugins)) await runHook('after', name);
|
|
};
|
|
|
|
const [internal, external] = await Factory.getPlugins(config, container);
|
|
let plugins = [...external, ...internal];
|
|
|
|
for (const plugin of plugins) {
|
|
await runLifeCycleHook(plugin, 'init');
|
|
}
|
|
|
|
const { increment, isPreRelease, preReleaseId } = options.version;
|
|
|
|
const name = await reduceUntil(plugins, plugin => plugin.getName());
|
|
const latestVersion = await reduceUntil(plugins, plugin => plugin.getLatestVersion());
|
|
const changelog = await reduceUntil(plugins, plugin => plugin.getChangelog(latestVersion));
|
|
|
|
const incrementBase = { latestVersion, increment, isPreRelease, preReleaseId };
|
|
incrementBase.increment = await reduceUntil(plugins, plugin => plugin.getIncrement(incrementBase));
|
|
|
|
let version = await reduceUntil(plugins, plugin => plugin.getIncrementedVersionCI(incrementBase));
|
|
|
|
config.setContext({ name, latestVersion, version, changelog });
|
|
|
|
const action = options.isUpdate ? 'update' : 'release';
|
|
const suffix = version && !options.isUpdate ? `${latestVersion}...${version}` : `currently at ${latestVersion}`;
|
|
|
|
log.obtrusive(`🚀 Let's ${action} ${name} (${suffix})`);
|
|
|
|
log.preview({ title: 'changelog', text: changelog });
|
|
|
|
version = version || (await reduceUntil(plugins, plugin => plugin.getIncrementedVersion(incrementBase)));
|
|
config.setContext(parseVersion(version));
|
|
|
|
if (config.isPromptOnlyVersion) {
|
|
config.setCI(true);
|
|
}
|
|
|
|
for (const hook of ['beforeBump', 'bump', 'beforeRelease']) {
|
|
for (const plugin of plugins) {
|
|
const args = hook === 'bump' ? [version] : [];
|
|
await runLifeCycleHook(plugin, hook, ...args);
|
|
}
|
|
}
|
|
|
|
plugins = [...internal, ...external];
|
|
|
|
for (const hook of ['release', 'afterRelease']) {
|
|
for (const plugin of plugins) {
|
|
await runLifeCycleHook(plugin, hook);
|
|
}
|
|
}
|
|
|
|
await metrics.trackEvent('end');
|
|
|
|
log.log(`🏁 Done (in ${Math.floor(process.uptime())}s.)`);
|
|
|
|
return {
|
|
name,
|
|
changelog,
|
|
latestVersion,
|
|
version
|
|
};
|
|
} catch (err) {
|
|
const { log, metrics } = container;
|
|
if (metrics) {
|
|
await metrics.trackException(err);
|
|
}
|
|
log ? log.error(err.message || err) : console.error(err); // eslint-disable-line no-console
|
|
throw err;
|
|
}
|
|
};
|
|
|
|
module.exports = runTasks;
|