Socket
Socket
Sign inDemoInstall

gulp-rollup

Package Overview
Dependencies
Maintainers
2
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-rollup - npm Package Compare versions

Comparing version 2.5.0 to 2.5.1

5

index.js

@@ -12,2 +12,3 @@ 'use strict';

var path = require('path');
var bufferFrom = require('buffer-from');

@@ -107,6 +108,6 @@ function GulpRollup(options) {

path: entryFile,
contents: new Buffer(result.code)
contents: bufferFrom(result.code)
});
} else {
file.contents = new Buffer(result.code);
file.contents = bufferFrom(result.code);
}

@@ -113,0 +114,0 @@

3

package.json
{
"name": "gulp-rollup",
"version": "2.5.0",
"version": "2.5.1",
"description": "gulp plugin for Rollup ES6 module bundler",

@@ -26,2 +26,3 @@ "main": "index.js",

"dependencies": {
"buffer-from": "^0.1.0",
"gulp-util": "^3.0.6",

@@ -28,0 +29,0 @@ "readable-stream": "^2.1.4",

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