Bring back eslint-plugin-import

This commit is contained in:
be5invis 2024-10-11 19:09:52 -07:00
parent 1666e2b37a
commit 1b7ad7cab9
21 changed files with 910 additions and 34 deletions

View file

@ -8,6 +8,7 @@
"dependencies": {
"@iarna/toml": "^2.2.5",
"@iosevka/param": "31.8.0",
"@unicode/unicode-16.0.0": "^1.6.0"
"@unicode/unicode-16.0.0": "^1.6.0",
"semver": "^7.6.3"
}
}

View file

@ -12,6 +12,7 @@
"@iarna/toml": "^2.2.5",
"@iosevka/param": "31.8.0",
"@unicode/unicode-16.0.0": "^1.6.0",
"cldr": "^7.5.0"
"cldr": "^7.5.0",
"@msgpack/msgpack": "^2.8.0"
}
}

View file

@ -1,4 +1,4 @@
import * as themes from "../themes/index.mjs";
import themes from "../themes/index.mjs";
export default (function (args) {
const theme = themes[args.theme];

View file

@ -1,4 +1,4 @@
import * as themes from "../themes/index.mjs";
import themes from "../themes/index.mjs";
export default CharGrid;

View file

@ -1,4 +1,4 @@
import * as themes from "../themes/index.mjs";
import themes from "../themes/index.mjs";
export default (function (args) {
const theme = themes[args.theme];

View file

@ -1,4 +1,4 @@
import * as themes from "../themes/index.mjs";
import themes from "../themes/index.mjs";
export default (function (args) {
const theme = themes[args.theme];

View file

@ -1,4 +1,4 @@
import * as themes from "../themes/index.mjs";
import themes from "../themes/index.mjs";
// prettier-ignore
const languages = [

View file

@ -1,4 +1,4 @@
import * as themes from "../themes/index.mjs";
import themes from "../themes/index.mjs";
function* makeSample(theme, args) {
const groupSet = new Set(args.ligSets);

View file

@ -1,4 +1,4 @@
import * as themes from "../themes/index.mjs";
import themes from "../themes/index.mjs";
export default (function (args) {
const theme = themes[args.theme];

View file

@ -1,4 +1,4 @@
import * as themes from "../themes/index.mjs";
import themes from "../themes/index.mjs";
// prettier-ignore
export const ssStrings = [

View file

@ -1,4 +1,4 @@
import * as themes from "../themes/index.mjs";
import themes from "../themes/index.mjs";
// prettier-ignore
const ssStrings = [

View file

@ -1,4 +1,4 @@
import * as themes from "../themes/index.mjs";
import themes from "../themes/index.mjs";
export default (function (args) {
const theme = themes[args.theme];

View file

@ -1,14 +1,18 @@
export const light = {
body: "#20242E",
dimmed: "#20242E40",
stress: "#048FBF",
sigil: "#974caf",
title: "#8757AD",
};
export const dark = {
body: "#DEE4E3",
dimmed: "#DEE4E340",
stress: "#03AEE9",
sigil: "#c49ed1",
title: "#B77FDB",
const themes = {
light: {
body: "#20242E",
dimmed: "#20242E40",
stress: "#048FBF",
sigil: "#974caf",
title: "#8757AD",
},
dark: {
body: "#DEE4E3",
dimmed: "#DEE4E340",
stress: "#03AEE9",
sigil: "#c49ed1",
title: "#B77FDB",
},
};
export default themes;

View file

@ -5,6 +5,7 @@
"dependencies": {
"semver": "^7.6.3",
"wawoff2": "^2.0.1",
"@iosevka/util": "31.8.0"
"@iosevka/util": "31.8.0",
"@unicode/unicode-16.0.0": "^1.6.0"
}
}