Socket
Socket
Sign inDemoInstall

@cypress/browserify-preprocessor

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cypress/browserify-preprocessor - npm Package Compare versions

Comparing version 3.0.0 to 3.0.1

4

index.js

@@ -120,3 +120,3 @@ 'use strict'

const transform = browserifyOptions.transform
const hasTsifyTransform = transform.some(([name]) => name.includes('tsify'))
const hasTsifyTransform = transform.some((stage) => Array.isArray(stage) && stage[0].includes('tsify'))
const hastsifyPlugin = browserifyOptions.plugin.includes('tsify')

@@ -140,3 +140,3 @@

// remove babelify setting
browserifyOptions.transform = transform.filter(([name]) => !name.includes('babelify'))
browserifyOptions.transform = transform.filter((stage) => !Array.isArray(stage) || !stage[0].includes('babelify'))
// add typescript compiler

@@ -143,0 +143,0 @@ browserifyOptions.transform.push([

{
"name": "@cypress/browserify-preprocessor",
"version": "3.0.0",
"version": "3.0.1",
"description": "Cypress preprocessor for bundling JavaScript via browserify",

@@ -5,0 +5,0 @@ "scripts": {

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