Skip to content

Commit

Permalink
fix(dependecies): included "regenerator-runtime/runtime" and renamed …
Browse files Browse the repository at this point in the history
…global variable
  • Loading branch information
guioconnor committed Mar 13, 2018
1 parent 3c412e8 commit 8181752
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,4 @@
"dependencies": {
"webpack-cli": "^2.0.11"
}
}
}
1 change: 1 addition & 0 deletions src/index.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { shuffle, identity, cloneDeep } from 'lodash';
import "regenerator-runtime/runtime";

import MemoryGrid from './MemoryGrid';
import MemoryCard, { CARD_STATE } from './MemoryCard';
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
output: {
path: join(__dirname, 'dist'),
libraryTarget: 'umd',
library: 'reactMemoryGame',
library: 'ReactMemoryGame',
},
devtool: 'source-map',
module: {
Expand Down

0 comments on commit 8181752

Please sign in to comment.