Sven Sauleau
Sven Sauleau
It would be simpler for me to include code under BSD or MIT. Would you be open to switch the current GPL license to BSD/MIT? Thanks
For example: ```js async function C() { const res = await fetch(); return res; } ``` We want a way to rerun the fetch request, probably by rerendering the C...
Basic async-reactor example for: - [x] React - [ ] Preact - [ ] Inferno and: - [ ] How to handle failures in component
Originally from https://github.com/Rich-Harris/packd/issues/23. It looks like there is a missing dependency to `babel-core` only in the 8 version. Relevant log: ``` Cannot find module 'babel-core' from '/foo/packd/.tmp/[email protected]/package/node_modules/modify-babel-preset/lib' ``` It works...
Following the discussion from https://github.com/Rich-Harris/packd/issues/42#issuecomment-366759727. In https://github.com/jashkenas/backbone/blob/master/backbone.js#L26 jQuery is require'd in a TryCatch Statement which is probably fine on Node but fails to bundle. I would suggest to add `jquery`...
Since https://github.com/whatwg/fetch/commit/42464c8c3d2fd3437a19fc6afd2438a0fd42dde8 `Headers.prototype.getAll` has been deprecated/removed from the spec and implementations. I understand that in browsers (including service workers) filtered responses don't include headers that could benefit from the getAll...
Sometimes cargo fails to build and the error doesn't show up in the console, we should make sure the user has the info.
when wasm-pack isn't present it fails with something like: ``` /home/a/Code/wasm/node_modules/@wasm-tool/wasm-pack-plugin/plugin.js:210 reject(new Error("Rust compilation.")); ^ Error: Rust compilation. at ChildProcess. (/home/a/Code/wasm/node_modules/@wasm-tool/wasm-pack-plugin/plugin.js:210:16) at ChildProcess.emit (node:events:376:20) at maybeClose (node:internal/child_process:1063:16) at Socket. (node:internal/child_process:449:11)...
We should rename this project to `@wasm-tool/rust-webpack-plugin`, to be consistent with the Rollup plugin `@wasm-tool/rollup-plugin-rust` (https://github.com/wasm-tool/rollup-plugin-rust). To help the migration we should add a deprecation message to `wasm-pack-plugin` and indicate...
It's worth documenting that we can actually pass args to cargo using `extraArgs` and `-- ...`