Skip to content

Commit

Permalink
fix invalid imports
Browse files Browse the repository at this point in the history
This fixes #316.

That issue turns out to be more than an annoyance for Embroider's auditing code. As I'm experimenting with alternative packagers, I'm finding others that blow up because of the invalid module here.
  • Loading branch information
ef4 committed Feb 25, 2021
1 parent e621b66 commit ab8c0ff
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ import BaseComponentManager, {
} from './base-component-manager';

import GlimmerComponent, { Constructor } from './component';
import { setDestroyed, setDestroying } from './destroyables';
import * as destroyables from './destroyables';
const { setDestroyed, setDestroying } = destroyables;

const CAPABILITIES = gte('3.13.0-beta.1')
? capabilities('3.13', {
Expand Down

0 comments on commit ab8c0ff

Please sign in to comment.