We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I also tried csjs-extractify but it creates a blank CSS file. Is there a way to get it to work?
csjs-extractify
The text was updated successfully, but these errors were encountered:
csjs-extractify needs to run before babelify. I suspect this is what is happening:
babelify
csjs`.foo {}`
is being turned into:
"use strict"; var _templateObject = _taggedTemplateLiteral([".foo {}"], [".foo {}"]); function _taggedTemplateLiteral(strings, raw) { return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); } csjs(_templateObject);
Which csjs-extractify won't recognize.
Sorry, something went wrong.
Thanks! Will give it a try!
No branches or pull requests
I also tried
csjs-extractify
but it creates a blank CSS file. Is there a way to get it to work?The text was updated successfully, but these errors were encountered: