Kenji Imamula
Kenji Imamula
@gpbl thanks! Reverted #1451 in #1476 and updated this PR to focus on fixing #1320.
@gpbl could you kindly review this PR? Downgrading to v8.0.4 doesn't work for us since #1320 is also not acceptable. Thanks!
Thank you for your review!! I believe this PR fixes the issue shown in the CodeSandbox example you provided in #1320. I didn't know about `disabled` prop and didn't address...
I found that the issue described in your [comment](https://github.com/gpbl/react-day-picker/pull/1468#issuecomment-1186016263) is not specific to `disabled` but also happens with `hidden`, for which the solution adopted in @react-aria/datepicker doesn't work. I still...
@gpbl is there anything I can do to get this PR merged?
That makes sense and therefore passing value from a subscriber with `next()` should be possible in this pattern. ```js // master.js import { spawn, Worker } from "threads" const counter...
Now that Node.js v8 has reached its EOL, every `pump()` in gulp docs should probably be replaced with `stream.pipeline()`. https://nodejs.org/en/docs/guides/backpressuring-in-streams/#the-problem-with-data-handling
Setting `treeShake: false` also works.
The reason why polyfills are added correctly when tree shaking is enabled is that `vuetify/lib` is pushed to `build.transpile` [here](https://github.com/nuxt-community/vuetify-module/blob/v1.11.2/src/build.ts#L15). When I added the following in `nuxt.config.js` in https://github.com/kimamula/nuxt-vuetify-treeshake-false, I...
@disjointed Thanks for your comments. > @kimamula Try adding 'vuetify/lib' to transpile array, instead of just 'vuetify'. I forgot to mention that I had already confirmed that did not work,...