Skip to content

Commit

Permalink
Add missing react-dom js to package data (#4772)
Browse files Browse the repository at this point in the history
This dependency was omitted when react was added, so it is not installed.

Closes #4771
  • Loading branch information
minrk authored and lresende committed Aug 6, 2019
1 parent e498de6 commit 5c43809
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions setupbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ def find_package_data():
pjoin(components, "jquery-ui", "themes", "smoothness", "images", "*"),
pjoin(components, "marked", "lib", "marked.js"),
pjoin(components, "react", "react.production.min.js"),
pjoin(components, "react", "react-dom.production.min.js"),
pjoin(components, "requirejs", "require.js"),
pjoin(components, "requirejs-plugins", "src", "json.js"),
pjoin(components, "requirejs-text", "text.js"),
Expand Down

1 comment on commit 5c43809

@dankastv16
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

where should it be added?

Please sign in to comment.