New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

svg2ttf

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

svg2ttf - npm Package Compare versions

Comparing version

to
4.0.3

6

CHANGELOG.md

@@ -0,1 +1,7 @@

4.0.3 / 2017-05-27
------------------
- Script tags should be arranged alpabetically, #55.
4.0.2 / 2016-08-04

@@ -2,0 +8,0 @@ ------------------

6

lib/ttf/tables/gsub.js

@@ -60,3 +60,7 @@ 'use strict';

var scripts = [ [ 'latn', createScript() ], [ 'DFLT', createScript() ] ];
// tags should be arranged alphabetically
var scripts = [
[ 'DFLT', createScript() ],
[ 'latn', createScript() ]
];

@@ -63,0 +67,0 @@ var header = (0

9

package.json
{
"name": "svg2ttf",
"version": "4.0.2",
"version": "4.0.3",
"description": "Converts SVG font to TTF font",

@@ -23,4 +23,5 @@ "keywords": [

"scripts": {
"lint": "./node_modules/.bin/eslint .",
"test": "npm run lint && ./node_modules/.bin/mocha"
"lint": "eslint .",
"test": "npm run lint && mocha",
"update_fixture": "./svg2ttf.js --ts 1457357570703 test/fixtures/test.svg test/fixtures/test.ttf"
},

@@ -36,5 +37,5 @@ "dependencies": {

"devDependencies": {
"eslint": "~3.2.2",
"eslint": "^3.10.2",
"mocha": "^3.0.0"
}
}
svg2ttf
========
[![Build Status](https://img.shields.io/travis/fontello/svg2ttf/master.svg?style=flat)](https://travis-ci.org/fontello/svg2ttf)
[![NPM version](https://img.shields.io/npm/v/svg2ttf.svg?style=flat)](https://www.npmjs.org/package/svg2ttf)

@@ -12,3 +13,3 @@

Internal API is similar to FontForge's one. Since primary goal
is generating iconic fonts, sources can lack some spesific TTF/OTF features,
is generating iconic fonts, sources can lack some specific TTF/OTF features,
like kerning and so on. Anyway, current code is a good base for development,

@@ -15,0 +16,0 @@ because it will save you tons of hours to implement correct writing & optimizing