Nathan Williams

Results 8 comments of Nathan Williams

It would still be hoisted, and the properties would still be views, so it's not an attempt to conflate imports with destructuring but to introduce selective structuring to keep plucked...

Something that was not clear to me (but probably should have been) when I suggested this is that static analysis can't just go by exports and imports because a loaded...

FWIW, the same problem now exists for IDEA 2022.1. > Plugin 'Spek Framework' (version '2.0.18-IJ2021.3') is not compatible with the current version of the IDE, because it requires build 213.*...

Same issue as [jspm-cli#1338](https://github.com/jspm/jspm-cli/issues/1338) here... My NODE_PATH was set to `C:\Users\\AppData\Roaming\npm\node_modules` (maybe from a previous install of Node? I just did a clean install to v5.6.0) and as a result...

@hughsk The possible problem with sort-stream is that the stream produced by gulp.src already has the file attached. I can't tell whether the actual bytes have been loaded at that...

We were trying to setup migrations for in-memory sqlite tests and couldn't figure out why the hooks weren't working. 😩 It would be great to see this fixed.

This hacky import and a declaration workaround seems to work for matchers at least. ``` import {expect} from '@jest/globals' expect.extend((await import('jest-extended')).default) declare module '@jest/expect' { export interface Matchers extends CustomMatchers...

My impression is that plugins like this might be less relevant (or at least much simplified) once the new [runtime API](https://vitejs.dev/guide/api-vite-runtime) stabilizes. It directly addresses the module-graph/HMR stuff by moving...