renovate/tools/release.mjs

10 lines
289 B
JavaScript
Raw Normal View History

import shell from 'shelljs';
2022-04-12 06:39:00 +00:00
import { options } from './utils/options.mjs';
2020-03-11 07:52:41 +00:00
const version = options.release;
2020-03-11 07:52:41 +00:00
shell.echo(`Publishing version: ${version}`);
2020-03-11 07:52:41 +00:00
// eslint-disable-next-line promise/valid-params,@typescript-eslint/no-floating-promises
import('./dispatch-release.mjs').catch();