@stylable/code-formatter
Advanced tools
Comparing version 6.0.0-rc.3 to 6.0.0
{ | ||
"name": "@stylable/code-formatter", | ||
"version": "6.0.0-rc.3", | ||
"version": "6.0.0", | ||
"description": "A code formatting utility for Stylable stylesheets", | ||
@@ -10,6 +10,6 @@ "main": "dist/index.js", | ||
"dependencies": { | ||
"@stylable/core": "^6.0.0-rc.3", | ||
"@stylable/core": "^6.0.0", | ||
"@tokey/css-value-parser": "^0.1.4", | ||
"js-beautify": "^1.14.11", | ||
"postcss": "^8.4.33" | ||
"js-beautify": "^1.15.1", | ||
"postcss": "^8.4.35" | ||
}, | ||
@@ -16,0 +16,0 @@ "files": [ |
@@ -209,4 +209,4 @@ import { parse, AnyNode, Rule, Declaration } from 'postcss'; | ||
if ('nodes' in ast) { | ||
for (let i = 0; i < ast.nodes.length; i++) { | ||
formatAst(ast.nodes[i], i, { | ||
for (let i = 0; i < ast.nodes!.length; i++) { | ||
formatAst(ast.nodes![i], i, { | ||
endOfLine: NL, | ||
@@ -213,0 +213,0 @@ indent, |
Sorry, the diff of this file is not supported yet
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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
1
85569
Updated@stylable/core@^6.0.0
Updatedjs-beautify@^1.15.1
Updatedpostcss@^8.4.35