Adam Haglund
Adam Haglund
I have compared the result bundles of our applications (webpack+terser) with our current configurations (`sideEffects: false`, `preserveModules: true`) and the WIP tsdx migration versions, and the tsdx packages are not...
We don't need this for "deep imports" - it's useful exclusively for the better tree-shaking it provides out of the box. If we do something like `import {A, B} from...
So I've experimented using Immer's config: Immer Config ```js module.exports = { rollup: (config, options) => options.format !== "esm" ? config : { ...config, // this makes sure sideEffects: true...
> Can you provide a reproduction for this? I believe this would be helpful to the broader community as well. I created an [example reproduction](https://github.com/BeeeQueue/rollup-treeshaking-repro) using your better config. Config-wise,...
I've ran into another problem: if we use async/await and babel transpiles it we will get an invalid output due to [`babel-plugin-transform-async-to-promises/helpers` not being external](https://github.com/jaredpalmer/tsdx/blob/3357cbfff203fbc0a7ccf20fe7c8bc93f43050fa/src/createRollupConfig.ts#L63-L65). It ends up outputting the...
Not sure what I can do. From my API analytics it seems like my changes are live and working as intended
It's working for me in my instance running the official docker image as well, so I can't debug it 😕
Maybe something with a null Dict? I don't know much about python really
The IPC requests are failing since they are not sending a `Origin` header. From what I can tell it's because of [this PR](https://github.com/tauri-apps/tauri/pull/9100), more specifically [this line](https://github.com/tauri-apps/tauri/pull/9100/files#diff-d6ec24d524b77014e2aa13eec678a5032904ddc820664b1c000866cc006cc71aR403). The browser is...
downgrade your tauri until they fix the bug