-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No intermediate files #166
Comments
Not currently, no. Agree that it probably makes sense though! |
Big +1 on this. :) sorcery([
minifiedCode, // with inline source map
{content: transformedCode, sourcemap: babelSourceMap},
sourceCode,
]) Would the source filename be required for this? |
As long as the last sourcemap in the chain has correct let map = sorcery([
minifiedCode, // inlined source map
{content: transformedCode, map: babelSourceMap},
]) You will need to set |
My fork of I stripped out the CLI and anything filesystem-related. It caters more to build tools, which work with in-memory files most often. So while intermediate files are supported, they are not the default. |
I am using rollup to generate iifes for several sub directories, and then using source-map-concat to stitch them all together. This works great, and I'd like to use sorcery on top of this process, however, currently my whole process uses strings, from rollup on, the final one being injected into a script tag in an electron page, and no intermediate files are generated.
Is there any way to use sorcery with this workflow or will I be forced to generate intermediate files?
The text was updated successfully, but these errors were encountered: