@ianvs/prettier-plugin-sort-imports
Advanced tools
Comparing version 3.7.1 to 3.7.2
@@ -65,3 +65,6 @@ "use strict"; | ||
function convertImportSpecifierToType(node) { | ||
(0, assert_1.default)(node.importKind === 'value' || node.importKind === 'type'); | ||
(0, assert_1.default)(node.importKind === 'value' || | ||
node.importKind === 'type' || | ||
// importKind can be null when using Flow | ||
node.importKind === null); | ||
node.importKind = 'type'; | ||
@@ -68,0 +71,0 @@ } |
{ | ||
"name": "@ianvs/prettier-plugin-sort-imports", | ||
"private": false, | ||
"version": "3.7.1", | ||
"version": "3.7.2", | ||
"description": "A prettier plugins to sort imports in provided RegEx order", | ||
@@ -6,0 +6,0 @@ "main": "lib/src/index.js", |
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
87179
31
1325