chore(package): update package-lock#3277
Conversation
Generated by 🚫 dangerJS |
|
🤔 just pinning dependency makes test fails? |
|
Were they pinned to the most-recent, compatible versions? Or to potentially old versions? |
|
pin just removed caret from version range. There should be some semver minor bumps with carets, but still making test fails seems bit odd. |
|
How did that test ever pass? The implementation seems to explicitly not use the scheduler if there is only one observable? if (observables.length === 1 || (observables.length === 2 && isScheduler(observables[1]))) {
return from(<any>observables[0]);
}This is the logged output: And this is the failing test. |
|
/cc @benlesh , I recall this test added recently. |
6b619e2 to
d2ebae0
Compare
that's true, test case description is reading bit confusing. It concat's |
d2ebae0 to
15a38d5
Compare
15a38d5 to
b912e68
Compare
|
phew, bit larger work than I thought. |
|
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Description:
This PR pins all of our dependncies, also check in package-lock.json. Now package lock support becomes quite stable, it works on cross-platform without modifying dependency when just try to install dependencies. We may need bump up huge number of dependencies in here, but that's different story.
Related issue (if exists):