Skip to content
This repository has been archived by the owner on Mar 13, 2023. It is now read-only.

Commit

Permalink
fix: broken import references
Browse files Browse the repository at this point in the history
  • Loading branch information
moranje committed Oct 15, 2018
1 parent 6172d28 commit 25728ab
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions src/alfred-workflow-todoist.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import '@babel/polyfill'
import '@babel/polyfill';

import { cache, serialize } from '@/todoist/cache'
import { AlfredError, handleError } from '@/workflow/error'
import { getSetting } from '@/workflow/settings'
import { TodoistWorkflow } from '@/workflow/todoist-workflow'
import { cache, serialize } from '@/workflow/cache';
import { AlfredError, handleError } from '@/workflow/error';
import { getSetting } from '@/workflow/settings';
import { TodoistWorkflow } from '@/workflow/todoist-workflow';

const argv = Object.assign([], process.argv)
argv.splice(0, 2)
Expand Down
20 changes: 10 additions & 10 deletions src/todoist/rest-api-v8.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { cache } from '@/todoist/cache'
import { Label } from '@/todoist/label'
import { Project } from '@/todoist/project'
import { Task } from '@/todoist/task'
import { uuid } from '@/workflow/workflow'
import { filter } from 'fuzzaldrin'
import got from 'got'
import find from 'lodash.find'
import unionBy from 'lodash.unionby'
import compose from 'stampit'
import { Label } from '@/todoist/label';
import { Project } from '@/todoist/project';
import { Task } from '@/todoist/task';
import { cache } from '@/workflow/cache';
import { uuid } from '@/workflow/workflow';
import { filter } from 'fuzzaldrin';
import got from 'got';
import find from 'lodash.find';
import unionBy from 'lodash.unionby';
import compose from 'stampit';

interface Adapter {
type: string
Expand Down

0 comments on commit 25728ab

Please sign in to comment.