Skip to content

Commit

Permalink
Merge pull request #6 from wmertens/patch-1
Browse files Browse the repository at this point in the history
Fix requiring own dependencies
  • Loading branch information
developit authored Nov 26, 2019
2 parents 2fd6590 + e0d6761 commit 7afe042
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ export default declare((api, opts) => {
path.resolve(__dirname, "./plugins/transform-edge-function-name"),

// Proposals
"@babel/plugin-proposal-unicode-property-regex",
"@babel/plugin-transform-dotall-regex",
require.resolve("@babel/plugin-proposal-unicode-property-regex"),
require.resolve("@babel/plugin-transform-dotall-regex"),
].filter(Boolean),
};
});

0 comments on commit 7afe042

Please sign in to comment.