Skip to content

Commit

Permalink
Release 0.36.1
Browse files Browse the repository at this point in the history
  • Loading branch information
be5invis committed Mar 20, 2022
2 parents f5a58f7 + 3ec9d37 commit 6d07bf1
Show file tree
Hide file tree
Showing 326 changed files with 13 additions and 15 deletions.
5 changes: 2 additions & 3 deletions checkenv.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
"use strict";

const which = require("which");
const colors = require("colors/safe");

function check(util) {
try {
which.sync(util);
console.error(colors.green(`External dependency <${util}> is present.`));
console.error(`External dependency <${util}> is present.`);
} catch (e) {
console.error(colors.red(`External dependency <${util}> not found.`));
console.error(`External dependency <${util}> not found.`);
}
}

Expand Down
23 changes: 11 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sarasa-gothic",
"version": "0.36.0",
"version": "0.36.1",
"main": "./run",
"scripts": {
"build": "verda -f verdafile.js",
Expand All @@ -9,15 +9,14 @@
"install": "node checkenv"
},
"dependencies": {
"@chlorophytum/cli": "^0.40.0",
"@chlorophytum/font-format-ttf": "^0.40.0",
"@chlorophytum/hint-store-provider-file": "^0.40.0",
"@chlorophytum/hm-combine": "^0.40.0",
"@chlorophytum/hm-select-glyphs": "^0.40.0",
"@chlorophytum/hm-ideograph": "^0.40.0",
"@chlorophytum/cli": "^0.40.1",
"@chlorophytum/font-format-ttf": "^0.40.1",
"@chlorophytum/hint-store-provider-file": "^0.40.1",
"@chlorophytum/hm-combine": "^0.40.1",
"@chlorophytum/hm-select-glyphs": "^0.40.1",
"@chlorophytum/hm-ideograph": "^0.40.4",
"clone": "^2.1.2",
"colors": "^1.4.0",
"fs-extra": "^9.1.0",
"fs-extra": "^10.0.1",
"JSONStream": "^1.3.5",
"strip-bom-stream": "^4.0.0",
"temp": "^0.9.4",
Expand All @@ -26,9 +25,9 @@
"which": "^2.0.2"
},
"devDependencies": {
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"prettier": "^2.2.1"
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.5.1"
},
"engines": {
"node": ">=12.0.0"
Expand Down
Loading

0 comments on commit 6d07bf1

Please sign in to comment.