Skip to content

Commit

Permalink
fix(pluginutils): bring back named exports (#176)
Browse files Browse the repository at this point in the history
Co-authored-by: Andrew Powell <[email protected]>
  • Loading branch information
Andarist and shellscape committed Jan 24, 2020
1 parent 8d35423 commit 153584b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions packages/pluginutils/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ import dataToEsm from './dataToEsm';
import extractAssignedNames from './extractAssignedNames';
import makeLegalIdentifier from './makeLegalIdentifier';

export {
addExtension,
attachScopes,
createFilter,
dataToEsm,
extractAssignedNames,
makeLegalIdentifier
};

// TODO: remove this in next major
export default {
addExtension,
attachScopes,
Expand Down

0 comments on commit 153584b

Please sign in to comment.