Join our webinar on Wednesday, June 26, at 1pm EDTHow Chia Mitigates Risk in the Crypto Industry.Register
Socket
Socket
Sign inDemoInstall

gulp-ttf2eot

Package Overview
Dependencies
89
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.9 to 0.0.10

6

package.json
{
"name": "gulp-ttf2eot",
"description": "Create an EOT font from a TTF font",
"version": "0.0.9",
"version": "0.0.10",
"homepage": "https://github.com/nfroidure/gulp-ttf2eot",

@@ -32,3 +32,3 @@ "author": {

"ttf2eot": "latest",
"gulp-util": "~2.2.17",
"gulp-util": "~2.2.19",
"bufferstreams": "0.0.2",

@@ -47,3 +47,3 @@ "readable-stream": "^1.0.27-1"

"devDependencies": {
"gulp": "~3.8.1",
"gulp": "~3.8.5",
"mocha": "~1.20.1",

@@ -50,0 +50,0 @@ "event-stream": "~3.1.5"

@@ -53,4 +53,15 @@ var Stream = require('readable-stream')

// Fix for the vinyl clone method...
// https://github.com/wearefractal/vinyl/pull/9
if(options.clone) {
stream.push(file.clone());
if(file.isBuffer()) {
stream.push(file.clone());
} else {
var cntStream = file.contents;
file.contents = null;
var newFile = file.clone();
file.contents = cntStream.pipe(new Stream.PassThrough());
newFile.contents = cntStream.pipe(new Stream.PassThrough());
stream.push(newFile);
}
}

@@ -57,0 +68,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