You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was interested in testing this module out in an ember project using ember-browserify, but was running into errors because it seems that the main: "htmldiff.js" entry point in package.json is incorrect. Manually changing this to main: "./src/htmldiff.js" allows the module to work.
Is this a bug in package.json? Or should there be an htmldiff.js in the root level of the node_modules/htmldiff folder? When I npm install this package, htmldiff.js and htmldiff.coffee are both only in the src/ folder
The text was updated successfully, but these errors were encountered:
Yes it is a bug, you have to manually change the main config in the package json. Also try using json package and create an script that edits the package.json on installing packages.
I was interested in testing this module out in an ember project using ember-browserify, but was running into errors because it seems that the
main: "htmldiff.js"
entry point in package.json is incorrect. Manually changing this tomain: "./src/htmldiff.js"
allows the module to work.Is this a bug in package.json? Or should there be an htmldiff.js in the root level of the node_modules/htmldiff folder? When I npm install this package, htmldiff.js and htmldiff.coffee are both only in the src/ folder
The text was updated successfully, but these errors were encountered: