refactor: migrate @krlwlfrt/async-pool to @openstapps/collection-utils

This commit is contained in:
2023-06-29 17:29:49 +02:00
parent 64caebafe5
commit 98546a97a3
58 changed files with 621 additions and 1175 deletions

View File

@@ -22,7 +22,7 @@ import {GITLAB_API_URL} from './configuration.js';
import {getUsedVersionMajorMinor} from './tasks/get-used-version.js';
import {remind} from './tasks/remind.js';
import {tidy} from './tasks/tidy.js';
import {unlabel} from './tasks/unlabel.js';
import {removeLabel} from './tasks/remove-label.js';
// add default handler for unhandled rejections
process.on('unhandledRejection', async reason => {
@@ -57,7 +57,7 @@ if (existsSync(path.join(__dirname, 'package.json'))) {
}
commander.command('unlabel').action(async () => {
await unlabel(gitlabApi);
await removeLabel(gitlabApi);
Logger.ok('Done!');
});