Socket
Socket
Sign inDemoInstall

svgicons2svgfont

Package Overview
Dependencies
Maintainers
4
Versions
60
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

svgicons2svgfont - npm Package Compare versions

Comparing version 7.0.0 to 7.0.1

5

CHANGELOG.md

@@ -0,1 +1,6 @@

<a name="7.0.1"></a>
## [7.0.1](https://github.com/nfroidure/svgicons2svgfont/compare/v7.0.0...v7.0.1) (2017-08-24)
<a name="7.0.0"></a>

@@ -2,0 +7,0 @@ # [7.0.0](https://github.com/nfroidure/svgicons2svgfont/compare/v6.0.0...v7.0.0) (2017-08-24)

2

package.json
{
"name": "svgicons2svgfont",
"version": "7.0.0",
"version": "7.0.1",
"description": "Read a set of SVG icons and ouput a SVG font",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/nfroidure/svgicons2svgfont",

@@ -99,3 +99,8 @@ /* eslint-disable complexity,prefer-reflect,max-len,newline-after-var */

constructor(options) {
super({ objectMode: true, writableObjectMode: true, readableObjectMode: false });
super({ objectMode: true });
// Setting objectMode separately
this._writableState.objectMode = true;
this._readableState.objectMode = false;
this.glyphs = [];

@@ -102,0 +107,0 @@

@@ -25,3 +25,3 @@ /* eslint-disable prefer-template,newline-per-chained-call,complexity */

throw new Error(
'The "appendUnicode" option were renamed "prependUnicode".' +
'The "appendUnicode" option was renamed "prependUnicode".' +
' See https://github.com/nfroidure/gulp-svgicons2svgfont/issues/33'

@@ -28,0 +28,0 @@ );

Sorry, the diff of this file is not supported yet

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