-
-
Notifications
You must be signed in to change notification settings - Fork 95
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
Parcel plugin should process existing sourcemaps #208
Comments
Ok, I'll take a look. |
@oscarotero Update: at the moment, the
|
Very interesting info, thanks! I guess we have to wait until this PR is merged: parcel-bundler/source-map#111 |
I put the code on GitLab, so I can use it in my projects for now. Let me know if you have questions. |
ParcelCSS just released a new version with support for incoming source maps. import lume from "lume/mod.ts";
import postcss from "lume/plugins/postcss.ts";
import parcel_css from "lume/plugins/parcel_css.ts";
const site = lume();
site.use(postcss({
sourceMap: true
}));
site.use(parcel_css({
sourceMap: true
}));
export default site; |
The parcel module Lume uses doesn't support passing a source-map. However, it is possible to merge them, and it doesn't look too difficult. See parcel-bundler/lightningcss#219 (comment).
The text was updated successfully, but these errors were encountered: