Roman Bekkiev
Roman Bekkiev
I've tried to use suggested in parent topic ```js export default { plugins: [ esbuildPlugin({ target: 'auto', loaders: { '.css', 'css' } }) ] } ``` This, indeed, makes dev-server...
Hey @bashmish, sorry, was doing staff on different topic. So, here's the more-or-less minimal reproduction of what I wanted to do: https://github.com/rbquantori/esbuild-csbs/blob/master/src/pacman.spec.js#L2
@bashmish, well, not _for that_, of course, that's just a minimal example. In real project there's a lot of stuff going on, e.g. we use TypeScript, so yes, there we...
Thanks @bashmish, the rollup plugin from the docs, indeed, works! ```js import { esbuildPlugin } from "@web/dev-server-esbuild"; import rollupPostcss from "rollup-plugin-postcss"; import { fromRollup } from "@web/dev-server-rollup"; const postcss =...
It looks like the problem is, actually, not in those mentioned places but rather in Mocha: https://github.com/mochajs/mocha/issues/4910