diff --git a/src/index.js b/src/index.js index 2110cf7..0e8c23a 100644 --- a/src/index.js +++ b/src/index.js @@ -5,7 +5,8 @@ module.exports = function({types: t}) { return { visitor: { TaggedTemplateExpression: function(path, state) { - if (path.node.tag.name !== 'csjs') { + if (path.node.tag.name !== 'csjs' && + path.node.tag.name !== 'css') { return false; }