@stylelint/postcss-css-in-js
Advanced tools
Comparing version 0.37.0 to 0.37.1
# Changelog | ||
## 0.37.1 | ||
- Fixed: maximum call stack size exceeded error ([#31](https://github.com/stylelint/postcss-css-in-js/pull/31)). | ||
## 0.37.0 | ||
- Fixed: babel configuration conflict when using TypeScript ([#2](https://github.com/stylelint/stylelint/pull/2)). | ||
- Fixed: parsing/stringifying for nested tagged template literals ([#17](https://github.com/stylelint/stylelint/pull/17)). | ||
- Fixed: babel configuration conflict when using TypeScript ([#2](https://github.com/stylelint/postcss-css-in-js/pull/2)). | ||
- Fixed: parsing/stringifying for nested tagged template literals ([#17](https://github.com/stylelint/postcss-css-in-js/pull/17)). | ||
@@ -8,0 +12,0 @@ ## Previous changes |
{ | ||
"name": "@stylelint/postcss-css-in-js", | ||
"version": "0.37.0", | ||
"version": "0.37.1", | ||
"description": "PostCSS syntax for parsing CSS in JS literals", | ||
@@ -5,0 +5,0 @@ "repository": "stylelint/postcss-css-in-js", |
@@ -89,4 +89,11 @@ 'use strict'; | ||
const source = input.css; | ||
const parseStyle = docFixer(offset, source, input.parseOptions); | ||
const opts = Object.assign({}, input.parseOptions); | ||
delete opts.templateLiteralStyles; | ||
delete opts.expressions; | ||
delete opts.quasis; | ||
const parseStyle = docFixer(offset, source, opts); | ||
const nodes = []; | ||
@@ -93,0 +100,0 @@ let index = range[0]; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
40592
1261