Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ianvs/prettier-plugin-sort-imports

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ianvs/prettier-plugin-sort-imports - npm Package Compare versions

Comparing version 3.7.1 to 3.7.2

5

lib/src/utils/merge-nodes-with-matching-flavors.js

@@ -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 @@ }

2

package.json
{
"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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc