Niklas Mischkulnig

Results 521 comments of Niklas Mischkulnig

> But after I upgraded Parcel, now I'm getting all sorts of inline comments: That is a bug in swc, it's already fixed but not released yet: https://github.com/swc-project/swc/pull/8257

> If someone can figure out how to make something similar for Windows, is welcome to make a PR. Should be added to https://github.com/electron-userland/electron-builder where linux and macOS support live...

@frederikhors The main discussion is here: https://github.com/kusti8/proton-native/issues/43. There is an example for using [launchui-packager](https://github.com/mimecorg/launchui-packager) at https://github.com/mischnic/proton-launchui.

> Is this intentional? I don't remember that it was. The other area classes were changed in this commit: https://github.com/parro-it/libui-node/pull/80/commits/3f993178c26a2915ffa7df32ec4cc6caa03bc371 @parro-it I commited the change to https://github.com/parro-it/libui-node/commits/path-destructor. Should we keep...

Turns out this actually doesn't work yet because of this hardcoded name check: https://github.com/parcel-bundler/parcel/blob/c3bbe0a6160186f496ca2f9e9bead9376c0522f1/packages/runtimes/webextension/src/WebExtensionRuntime.js#L18 We'll have to change that to just rely on some asset meta property...

> cargo expand's output is 120,008 lines of code. That's even more! Much of that is serializing/deserializing code generated by serde, which is known to produce verbose code. Parcel (and...

Not sure if I did something wrong, but the compiletime didn't get better for Parcel on my machine: - https://github.com/parcel-bundler/parcel/commit/f2042885cd30a77ea81445847b62a3d72dd0e5ef (before your change). Build takes 4m 15s. - https://github.com/parcel-bundler/parcel/commit/b180a3075a812f288999fccd473247523f31dca3 (after...

@ChristophP Could you please: - Create a github repo for that npm package and - also fix the package.json `main` field which currently points to a non-existent index.js where it...

We also have https://parceljs.org/plugin-browser now

You can specify plugins in a Parcel config that are not declared as dependencies to make Parcel install them only when they are needed for the first time (lazyily). The...