refactor: adjust code to updated dependencies

This commit is contained in:
Karl-Philipp Wulfert
2019-11-25 14:46:07 +01:00
parent 554cbfa110
commit 240052cba8
4 changed files with 6 additions and 6 deletions

View File

@@ -13,7 +13,7 @@
* this program. If not, see <https://www.gnu.org/licenses/>.
*/
import {Label} from '@openstapps/gitlab-api/lib/types';
import * as moment from 'moment';
import moment from 'moment';
/**
* List of schools with their IDs

View File

@@ -16,7 +16,7 @@ import {asyncPool} from '@krlwlfrt/async-pool';
import {Api} from '@openstapps/gitlab-api';
import {Issue, IssueState, MembershipScope, MergeRequestState, Project, User} from '@openstapps/gitlab-api/lib/types';
import {Logger} from '@openstapps/logger';
import * as moment from 'moment';
import moment from 'moment';
import {render} from 'mustache';
import {join, resolve} from 'path';
import {cwd} from 'process';

View File

@@ -16,7 +16,7 @@ import {asyncPool} from '@krlwlfrt/async-pool';
import {Api} from '@openstapps/gitlab-api';
import {IssueState, Scope} from '@openstapps/gitlab-api/lib/types';
import {Logger} from '@openstapps/logger';
import * as moment from 'moment';
import moment from 'moment';
import {flatten2dArray} from '../common';
import {CONCURRENCY, GROUPS, LAST_MEETING, NOTE_PREFIX} from '../configuration';