Skip to content

Commit

Permalink
Removed react-dom code that was packaged internally
Browse files Browse the repository at this point in the history
  • Loading branch information
Izzimach committed Dec 8, 2016
1 parent 33e6d59 commit b3bc9de
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-pixi",
"version": "0.9.2",
"version": "0.9.4",
"description": "Construct PIXI.js scenes using React",
"keywords": [
"react",
Expand Down Expand Up @@ -32,8 +32,8 @@
},
"peerDependencies": {
"pixi.js": "~4.0.0",
"react": "^15.4.0",
"react-dom": "^15.4.0"
"react": "^15.4.1",
"react-dom": "^15.4.1"
},
"devDependencies": {
"babel-core": "^6.0.0",
Expand All @@ -54,8 +54,8 @@
"lodash": "^4.6.1",
"node-static": "~0.7.3",
"pixi.js": "~4.0.0",
"react": "^15.4.0",
"react-dom": "^15.4.0",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"resemblejs": "~2.2.0",
"rimraf": "~2.5.0",
"transform-loader": "^0.2.3",
Expand Down
4 changes: 3 additions & 1 deletion webpack-commonjs.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ _.assign(commonjsconfig, {
externals: [
"pixi.js",
"react",
/^react\/lib\/.+/ // any require that refers to internal react modules
"react-dom",
/^react\/lib\/.+/, // any require that refers to internal react modules
/^react-dom\/lib\/.+/ // any require that refers to internal react modules
]
});
_.assign(commonjsconfig.output, {
Expand Down

0 comments on commit b3bc9de

Please sign in to comment.