Open Boscop opened 2 years ago
No idea about what's going wrong. Which node version are you using on Windows?
Cargo.toml as input, have never seen that. Interesting
@Boscop check discord please
@thgh I'm using node v18.12.0
The Cargo.toml as input is processed by @wasm-tool/rollup-plugin-rust
.
Hi, thanks for this great plugin :) It works great for me, but unfortunately only outside docker: My docker image for my web app builds fine when my frontend doesn't import any scss file, but it needs a single scss file (
index.scss
), and when the frontend imports it,yarn build
fails with this error:In the Dockerfile I'm doing
yarn install
beforeyarn build
and I have"rollup-plugin-scss": "^3.0.0",
in mydevDependencies
, so it should work, right? Here I posted my Dockerfile, package.json and rollup.config.mjs file for context: https://gist.github.com/Boscop/67fe407a634ee6dcf9f55abfe4328f45 E.g. this is therollup.config.mjs
file:Btw, outside of docker (on Windows 10),
yarn build
works fine, even when my project imports the scss file! So I'm wondering, why is it only failing inside docker?It seems I'm stuck with this, so I'd really appreciate any hint for how to solve this :)