Niklas Mischkulnig

Results 519 comments of Niklas Mischkulnig

Indeed, a build of ```js import * as fluent from "@fluentui/react"; import * as spectum from "@adobe/react-spectrum"; import * as antd from "antd"; import * as moment from "moment"; import...

@dsgkirkby This applies to you as well: https://github.com/parcel-bundler/parcel/issues/4143#issuecomment-997528950 "bundling" takes the most time in your case. If you want to try the new bundler right now, do this: https://github.com/parcel-bundler/parcel/issues/5772#issuecomment-1133377231 (you...

https://github.com/lukeed/resolve.exports might be useful

Packages like `[email protected]` don't contain a "main" (or module, ...) field at all, but only ```json "type": "module", "exports": "./dist/index.js", ``` So currently you can't import it with Parcel: `Failed...

No, it's in https://github.com/parcel-bundler/parcel/blob/699f0b24c38eabcdad0960c62c03bd2f2902b19e/packages/resolvers/default/src/DefaultResolver.js#L18-L41 which calls this class https://github.com/parcel-bundler/parcel/blob/699f0b24c38eabcdad0960c62c03bd2f2902b19e/packages/utils/node-resolver-core/src/NodeResolver.js#L90

Chrome says that `background: linear-gradient(...) text;` isn't valid: https://parcel-css.vercel.app/#%7B%22minify%22%3Afalse%2C%22nesting%22%3Afalse%2C%22customMedia%22%3Afalse%2C%22cssModules%22%3Afalse%2C%22analyzeDependencies%22%3Afalse%2C%22targets%22%3A%7B%7D%2C%22source%22%3A%22.x%20%7B%5Cn%20%20background%3A%20linear-gradient(90deg%2C%20%23020024%200%25%2C%20%2300fff8%2075%25)%3B%5Cn%20%20background-clip%3A%20text%3B%5Cn%7D%22%2C%22unusedSymbols%22%3A%5B%5D%2C%22version%22%3A%22local%22%7D

> Running into the same issue in dev mode but builds don't seem affected Might be related to https://parceljs.org/features/development/#development-target ?

There's nothing that can be treeshaking from react-dom, so I suspect the bundle analyzer is reporting invalid numbers, maybe the sourcemaps are slightly wrong again.

Nothing really changed in Parcel, maybe sharp did some breaking change?

So reverting https://github.com/parcel-bundler/parcel/commit/bb923d69f02612d65bc5f430a1cd2f7b21895252 apparently causes a different behaviour regarding cropping/repeat. For me, both Parcel versions (2.3.0 and 2.6.2) remove the animation when specifying width or height. > So might be...