Skip to content

Commit

Permalink
fix(email-plugin): Fix bad common import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbromley committed May 29, 2019
1 parent d753f0e commit 077fd6d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/email-plugin/src/event-listener.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { LanguageCode } from '@vendure/common/lib/generated-types';
import { Omit } from '@vendure/common/lib/omit';
import { Type } from '@vendure/common/lib/shared-types';
import { LanguageCode } from '@vendure/common/src/generated-types';

import { EmailDetails, EventWithContext } from './types';

Expand Down
2 changes: 1 addition & 1 deletion packages/email-plugin/src/plugin.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* tslint:disable:no-non-null-assertion */
import { LanguageCode } from '@vendure/common/lib/generated-types';
import { DEFAULT_CHANNEL_CODE } from '@vendure/common/lib/shared-constants';
import { LanguageCode } from '@vendure/common/src/generated-types';
import { EventBus, Order, OrderStateTransitionEvent, VendureEvent } from '@vendure/core';
import path from 'path';

Expand Down
2 changes: 1 addition & 1 deletion packages/email-plugin/src/template-loader.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { LanguageCode } from '@vendure/common/src/generated-types';
import { LanguageCode } from '@vendure/common/lib/generated-types';
import fs from 'fs-extra';
import path from 'path';

Expand Down

0 comments on commit 077fd6d

Please sign in to comment.