Socket
Socket
Sign inDemoInstall

cypress-devserver-esbuild

Package Overview
Dependencies
90
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.2.9 to 1.2.10

2

package.json
{
"name": "cypress-devserver-esbuild",
"version": "1.2.9",
"version": "1.2.10",
"description": "Minimal esbuild dev server for usage with cypress component tests.",

@@ -5,0 +5,0 @@ "main": "./src/dev-server.js",

@@ -21,3 +21,3 @@ const { context, build } = require('esbuild')

const hasStringArrayContentChanged = (oldList, newList) => {
return oldList.length === newList.length && new Set([].concat(oldList, newList)).size !== oldList.length
return oldList.length !== newList.length || new Set([].concat(oldList, newList)).size !== oldList.length
}

@@ -24,0 +24,0 @@

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc