Closed cfoellmann closed 6 years ago
Hello,
Thanks for spotting and reporting the issue. I'm wondering if it should not rather be "main": "src/jquery.jeditable.js",
? (non minified version)
I am not an npm expert so I am not sure which one is "right". You might be right and using the non-minified version is better and can be minified by a process by the user later.
I went with the src file ;)
great. thanks for solving this so fast. 👍
Yes, I published a new version too! (2.0.6)
when is the npm reference updated? Do you know that?
I've just pushed to npm. It is now live.
thanks again. Are there no webhooks for github? for example packagist provides them for github repos
Yes, there are webhook that could do that probably. I can also just remember to type "npm publish" after tagging a release :p
Description
when requiring the package via npm the config file is wrong.
you set
"main": "jquery.jeditable.js",
in https://github.com/NicolasCARPi/jquery_jeditable/blob/master/package.json#L5 That does not exist.You need to set it to
"main": "dist/jquery.jeditable.min.js",
so the package can be found by npm based tools