Skip to content

Commit

Permalink
Upgrade upstream. V0.12.8
Browse files Browse the repository at this point in the history
  • Loading branch information
be5invis committed Jun 22, 2020
1 parent 00185b8 commit 2a38919
Show file tree
Hide file tree
Showing 330 changed files with 47 additions and 21 deletions.
3 changes: 1 addition & 2 deletions .eslintrc.json
Expand Up @@ -11,9 +11,8 @@
"experimentalObjectRestSpread": true
}
},
"extends": "eslint:recommended",
"extends": ["eslint:recommended", "prettier"],
"rules": {
"indent": ["error", "tab", { "SwitchCase": 1 }],
"linebreak-style": ["error", "windows"],
"semi": ["error", "always"],
"no-var": "error",
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Expand Up @@ -21,4 +21,5 @@ preview/test-fonts
**/*.packed.js
ns-proof-page/fonts
package-lock.json
.private*
.private*
config.private.json
1 change: 1 addition & 0 deletions config.json
@@ -1,4 +1,5 @@
{
"buildOptions":{},
"familyOrder": ["gothic", "ui", "mono", "mono-slab", "term", "term-slab", "fixed", "fixed-slab"],
"families": {
"gothic": {
Expand Down
2 changes: 1 addition & 1 deletion make/common/gc.js
Expand Up @@ -162,7 +162,7 @@ function markSubtable(glyphSink, type, st, cfg) {
case "gsub_single":
for (const k in st) if (glyphSink.has(k) && st[k]) simplyAdd(glyphSink, st[k]);
break;
case "gsub_multi":
case "gsub_multiple":
for (const k in st)
if (glyphSink.has(k) && st[k]) {
for (const gTo of st[k]) simplyAdd(glyphSink, gTo);
Expand Down
8 changes: 5 additions & 3 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "sarasa-gothic",
"version": "0.12.7",
"version": "0.12.8",
"main": "./run",
"dependencies": {
"@chlorophytum/cli": "^0.8.0",
Expand All @@ -12,7 +12,7 @@
"colors": "^1.4.0",
"fs-extra": "^8.1.0",
"megaminx": "^0.9.0",
"otfcc-ttcize": "^0.10.1",
"otfcc-ttcize": "^0.10.2",
"verda": "^1.0.0-10",
"which": "^2.0.2",
"yargs": "^15.3.0"
Expand All @@ -25,6 +25,8 @@
"build": "verda -f verdafile.js"
},
"devDependencies": {
"eslint": "^5.15.1"
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"prettier": "^2.0.5"
}
}

0 comments on commit 2a38919

Please sign in to comment.