Skip to content

Commit

Permalink
fix(src/index.js): Typo in babel plugin checker
Browse files Browse the repository at this point in the history
Fixed typo causing chunk resolution to fail
  • Loading branch information
ScriptedAlchemy committed Jun 17, 2018
1 parent 46a670f commit d5ad0de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ webpack.config.js
.flowconfig
*.png
yarn.lock
.idea
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default function universal<Props: Props>(

const isDynamic = hasBabelPlugin || testBabelPlugin
options.isDynamic = isDynamic
options.usesBablePlugin = hasBabelPlugin
options.usesBabelPlugin = hasBabelPlugin
options.modCache = {}
options.promCache = {}

Expand Down

0 comments on commit d5ad0de

Please sign in to comment.