Aral Roca Gomez

Results 463 comments of Aral Roca Gomez

@devongovett can be related with the files in package.json? https://github.com/parcel-bundler/lightningcss/blob/baa1a2b7fa52eeb3827f8edcc2e14de33cd69ad0/package.json#L35-L40 In this code, looks that there are dependencies of other files: https://github.com/parcel-bundler/lightningcss/blob/baa1a2b7fa52eeb3827f8edcc2e14de33cd69ad0/node/index.js#L15-L23 At least: - `pkg/*` - `node/*.node` However, I...

Probably is more related with `2. You're running on an unsupported platform.`. This happens after build a CLI, and this CLI can be used on any platform to build the...

> What platform are you running on? That means operating system/cpu. - `uname -mprs`: Darwin 23.4.0 arm64 arm - Chip: Apple M1 Pro - Memory: 16 GB - macOS: 14.4.1...

I'm using [`bun`](https://bun.sh/docs/cli/install) as a package manager, and it install all `dependencies`, `devDependencies`, and`optionalDependencies`. Without doing the build of my CLI, it works. The problem comes when generating the build...

In my case, it happens because I want to add it with the [Bun bundler](https://bun.sh/docs/bundler) as a plugin.

I solve it in `Bun.build` adding `define: { "process.env.CSS_TRANSFORMER_WASM": "false" }`

> I solve it in `Bun.build` adding `define: { "process.env.CSS_TRANSFORMER_WASM": "false" }` Correction: It works well in my machine, but then I get this error on docker: ``` TypeError: /lib/x86_64-linux-gnu/libc.so.6:...

I have the same issue, @Xyzjesus @gouz do you solve it? thanks