-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
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
add module property to package.json #43
Conversation
Codecov Report
@@ Coverage Diff @@
## master #43 +/- ##
==========================================
- Coverage 98.11% 97.56% -0.56%
==========================================
Files 3 3
Lines 159 123 -36
==========================================
- Hits 156 120 -36
Misses 3 3 |
Thanks for a simple yet effective PR, @timelyportfolio . CI passes, so all looks good. The Stack Overflow link is empty. Do you mind adding it? I would like to see the discussion there. |
Also, probably need to bump |
@deitch I added the link above but also it is here https://stackoverflow.com/questions/42708484/what-is-the-module-package-json-field-for. I spent a couple hours figuring out this one stinking line :) Happy to help in any way on such a great project.
|
Isn't it always like that? Where was that line on twitter? "I hate software development, I hate software development, I hate software development, I hate software development, I hate software development, I hate software development... found the bug... it works... I love software development!!"
Thank you. I was thinking of moving this to its own org, and then doing implementations in Go, Rust, etc. |
Looks like |
@deitch I bumped package-lock.json version. As we are dreaming in this pull request, I'd also love to see a |
Like to see it as well. I think life gets pulled apart by being involved in many OSS projects. :-) Not to mention actual consulting work for which I get paid and have obligations which I take seriously. |
Published. |
Thanks so much for your incredbile work on
searchjs
. I plan to integrate intoparcoord-es
.rollup and the module property
I struggled with simple
import { matchArray } from 'searchjs
in an outside project, which generally works as expected. I discovered through thisStackOverflow discussion
that the problem was coming fromrollup
and a missingmodule
property in package.json. Adding themodule
property resolved my issue.