We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Having trouble using the package with a simple import as documented
import prom from 'promjs';
Working around it by doing...
import prom from 'promjs/index';
I think this is due to a miss match between the file layout in the git repo vs the published package
package.json refrences lib/index.js
lib/index.js
promjs/package.json
Line 5 in dc88ea5
In the package on npm however the actual index.js is in the root of the package, not lib.
index.js
lib
I suspect this is due to the cd lib in your push script
cd lib
Line 14 in dc88ea5
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Having trouble using the package with a simple import as documented
Working around it by doing...
I think this is due to a miss match between the file layout in the git repo vs the published package
package.json refrences
lib/index.js
promjs/package.json
Line 5 in dc88ea5
In the package on npm however the actual
index.js
is in the root of the package, notlib
.I suspect this is due to the
cd lib
in your push scriptpromjs/package.json
Line 14 in dc88ea5
The text was updated successfully, but these errors were encountered: