mirror of
https://github.com/zadam/trilium.git
synced 2026-01-02 20:54:24 +01:00
chore: fix typecheck
This commit is contained in:
parent
c2c19e8ecd
commit
f849c4b315
@ -2,7 +2,7 @@ import { IconRegistry } from "@triliumnext/commons";
|
||||
|
||||
import type BAttachment from "../becca/entities/battachment";
|
||||
import type BNote from "../becca/entities/bnote";
|
||||
import boxiconsManifest from "./icon_pack_boxicons-v2.json";
|
||||
import boxiconsManifest from "./icon_pack_boxicons-v2.json" with { type: "json" };
|
||||
import log from "./log";
|
||||
import search from "./search/services/search";
|
||||
import { safeExtractMessageAndStackFromError } from "./utils";
|
||||
|
||||
@ -14,6 +14,7 @@
|
||||
},
|
||||
"include": [
|
||||
"src/**/*.ts",
|
||||
"src/**/*.json",
|
||||
"package.json"
|
||||
],
|
||||
"exclude": [
|
||||
|
||||
@ -28,6 +28,7 @@
|
||||
"src/**/*.spec.jsx",
|
||||
"src/**/*.d.ts",
|
||||
"src/**/*.ts",
|
||||
"src/**/*.json",
|
||||
"package.json"
|
||||
]
|
||||
}
|
||||
|
||||
@ -1,37 +0,0 @@
|
||||
import { readFileSync, writeFileSync } from "fs";
|
||||
import { join } from "path";
|
||||
|
||||
import iconList from "../../apps/client/src/widgets/icon_list";
|
||||
|
||||
function readMappingsFromCss() {
|
||||
const cssPath = join(__dirname, "../../node_modules/boxicons/css/boxicons.css");
|
||||
const cssContent = readFileSync(cssPath, "utf-8");
|
||||
const mappings: Record<string, string> = {};
|
||||
const regex = /\.(bx.*?):before.*?\n.*?content:.*?"(.*?)"/g;
|
||||
let match;
|
||||
while ((match = regex.exec(cssContent)) !== null) {
|
||||
mappings[match[1]] = String.fromCharCode(parseInt(match[2].substring(1), 16));
|
||||
}
|
||||
return mappings;
|
||||
}
|
||||
|
||||
const mappings = readMappingsFromCss();
|
||||
|
||||
const icons = {};
|
||||
for (const icon of iconList.icons) {
|
||||
if (!icon.className) continue;
|
||||
const className = icon.className.substring(3); // remove 'bx-' prefix
|
||||
if (className === "bx-empty") continue;
|
||||
|
||||
icons[className] = {
|
||||
glyph: mappings[className],
|
||||
terms: [ icon.name, ...(icon.term || []) ]
|
||||
};
|
||||
}
|
||||
|
||||
const manifest = {
|
||||
prefix: "bx",
|
||||
icons
|
||||
};
|
||||
|
||||
writeFileSync(join(__dirname, "../../apps/server/src/services/icon_pack_boxicons-v2.json"), JSON.stringify(manifest, null, 2));
|
||||
Loading…
x
Reference in New Issue
Block a user