swc compile command (from cargo install swc_cli), but the transformations aren't applied on the produced output. Even using a config like this with a plugin like https://github.com/williamtetlow/swc-plugin-console-prefix doesn't apply the transformations:console.log("world"), output is console.log("world"), expected output is console.log("hello", "world"))swc compile in.js --out-file out.js --config-file build.swcrc. All files including config are in the directory. Enabling env.debug doesn't produce any helpful output either. The only transformations that get applied are stuff like if I target es5 instead of es2016 (ie const is turned into var) as well as the minify option with mangle etc. Plugin transformations don't seem to work at all.npx swc ./test.js but shouldn't you still be able to do the same with the CLI installed with cargo install swc_cli?