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

rollup-plugin-esbuild

Package Overview
Dependencies
Maintainers
1
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rollup-plugin-esbuild - npm Package Compare versions

Comparing version 1.3.0 to 1.3.1

4

dist/index.js

@@ -9,3 +9,3 @@ "use strict";

exports.default = (options = {}) => {
const filter = pluginutils_1.createFilter(options.include || /\.[jt]s$/, options.exclude || /node_modules/);
const filter = pluginutils_1.createFilter(options.include || /\.[jt]sx?$/, options.exclude || /node_modules/);
let service;

@@ -43,3 +43,3 @@ const stopService = () => {

async transform(code, id) {
if (filter(id)) {
if (!filter(id)) {
return null;

@@ -46,0 +46,0 @@ }

{
"name": "rollup-plugin-esbuild",
"version": "1.3.0",
"version": "1.3.1",
"main": "dist/index.js",

@@ -5,0 +5,0 @@ "types": "dist/index.d.ts",

@@ -22,3 +22,3 @@ # rollup-plugin-esbuild

// All options are optional
include: /\.[jt]s$/, // default
include: /\.[jt]sx?$/, // default
exclude: /node_modules/, // default

@@ -25,0 +25,0 @@ watch: process.argv.includes('--watch'),

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