Upgrade web dependencies

This commit is contained in:
Keavon Chambers 2024-09-24 01:20:14 -07:00
parent 1ee5ffbbe8
commit aa03dc8278
10 changed files with 1420 additions and 835 deletions

View file

@ -64,13 +64,24 @@ module.exports = {
"@typescript-eslint/indent": "off", "@typescript-eslint/indent": "off",
"@typescript-eslint/camelcase": "off", "@typescript-eslint/camelcase": "off",
"@typescript-eslint/no-use-before-define": "off", "@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_", ignoreRestSiblings: true }], "@typescript-eslint/no-unused-vars": [
"error",
{
args: "all",
argsIgnorePattern: "^_",
caughtErrors: "all",
caughtErrorsIgnorePattern: "^_",
destructuredArrayIgnorePattern: "^_",
varsIgnorePattern: "^_",
ignoreRestSiblings: true,
},
],
"@typescript-eslint/consistent-type-imports": "error", "@typescript-eslint/consistent-type-imports": "error",
"@typescript-eslint/consistent-type-definitions": ["error", "type"], "@typescript-eslint/consistent-type-definitions": ["error", "type"],
"@typescript-eslint/consistent-type-assertions": ["error", { assertionStyle: "as", objectLiteralTypeAssertions: "never" }], "@typescript-eslint/consistent-type-assertions": ["error", { assertionStyle: "as", objectLiteralTypeAssertions: "never" }],
"@typescript-eslint/consistent-indexed-object-style": ["error", "record"], "@typescript-eslint/consistent-indexed-object-style": ["error", "record"],
"@typescript-eslint/consistent-generic-constructors": ["error", "constructor"], "@typescript-eslint/consistent-generic-constructors": ["error", "constructor"],
"@typescript-eslint/ban-types": ["error", { types: { null: "Use `undefined` instead." } }], "@typescript-eslint/no-restricted-types": ["error", { types: { null: "Use `undefined` instead." } }],
// Prettier plugin config (for validating and fixing formatting) // Prettier plugin config (for validating and fixing formatting)
"prettier/prettier": "error", "prettier/prettier": "error",

File diff suppressed because it is too large Load diff

View file

@ -33,30 +33,32 @@
"reflect-metadata": "^0.2.2" "reflect-metadata": "^0.2.2"
}, },
"devDependencies": { "devDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.1.1", "@sveltejs/vite-plugin-svelte": "^3.1.2",
"@types/node": "^20.14.12", "@types/node": "^22.6.1",
"@typescript-eslint/eslint-plugin": "^7.17.0", "@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^7.17.0", "@typescript-eslint/parser": "^8.7.0",
"buffer": "^6.0.3", "buffer": "^6.0.3",
"concurrently": "^8.2.2", "concurrently": "^9.0.1",
"eslint-config-prettier": "^9.1.0", "eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1", "eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.29.1", "eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.1", "eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-svelte": "^2.43.0", "eslint-plugin-svelte": "^2.44.0",
"postcss": "^8.4.39", "postcss": "^8.4.47",
"prettier": "^3.3.3", "prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6", "prettier-plugin-svelte": "^3.2.6",
"process": "^0.11.10", "process": "^0.11.10",
"rollup-plugin-license": "^3.5.2", "rollup-plugin-license": "^3.5.3",
"sass": "^1.77.8", "sass": "1.78.0",
"svelte": "^4.2.18", "svelte": "^4.2.19",
"svelte-preprocess": "^6.0.2", "svelte-preprocess": "^6.0.2",
"ts-node": "^10.9.2", "ts-node": "^10.9.2",
"typescript": "^5.5.4", "typescript": "^5.6.2",
"vite": "^5.3.4", "vite": "^5.4.7",
"vite-multiple-assets": "1.2.10" "vite-multiple-assets": "1.3.1"
}, },
"//": "The dev dependency for `sass` can be removed once <https://github.com/sveltejs/svelte-preprocess/issues/656> is fixed, but meanwhile we have to",
"///": "list it here and pin it to 1.78.0 so `vite` and `svelte-preprocess` use it instead of 1.79+ which spams the console with deprecation warnings.",
"homepage": "https://graphite.rs", "homepage": "https://graphite.rs",
"license": "Apache-2.0", "license": "Apache-2.0",
"repository": { "repository": {

View file

@ -9,7 +9,7 @@ import { svelte } from "@sveltejs/vite-plugin-svelte";
import rollupPluginLicense, { type Dependency } from "rollup-plugin-license"; import rollupPluginLicense, { type Dependency } from "rollup-plugin-license";
import { sveltePreprocess } from "svelte-preprocess"; import { sveltePreprocess } from "svelte-preprocess";
import { defineConfig } from "vite"; import { defineConfig } from "vite";
import { default as viteMultipleAssets } from "vite-multiple-assets"; import { DynamicPublicDirectory as viteMultipleAssets } from "vite-multiple-assets";
const projectRootDir = path.resolve(__dirname); const projectRootDir = path.resolve(__dirname);

View file

@ -49,13 +49,24 @@ module.exports = {
"@typescript-eslint/indent": "off", "@typescript-eslint/indent": "off",
"@typescript-eslint/camelcase": "off", "@typescript-eslint/camelcase": "off",
"@typescript-eslint/no-use-before-define": "off", "@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_", ignoreRestSiblings: true }], "@typescript-eslint/no-unused-vars": [
"error",
{
args: "all",
argsIgnorePattern: "^_",
caughtErrors: "all",
caughtErrorsIgnorePattern: "^_",
destructuredArrayIgnorePattern: "^_",
varsIgnorePattern: "^_",
ignoreRestSiblings: true,
},
],
"@typescript-eslint/consistent-type-imports": "error", "@typescript-eslint/consistent-type-imports": "error",
"@typescript-eslint/consistent-type-definitions": ["error", "type"], "@typescript-eslint/consistent-type-definitions": ["error", "type"],
"@typescript-eslint/consistent-type-assertions": ["error", { assertionStyle: "as", objectLiteralTypeAssertions: "never" }], "@typescript-eslint/consistent-type-assertions": ["error", { assertionStyle: "as", objectLiteralTypeAssertions: "never" }],
"@typescript-eslint/consistent-indexed-object-style": ["error", "record"], "@typescript-eslint/consistent-indexed-object-style": ["error", "record"],
"@typescript-eslint/consistent-generic-constructors": ["error", "constructor"], "@typescript-eslint/consistent-generic-constructors": ["error", "constructor"],
"@typescript-eslint/ban-types": ["error", { types: { null: "Use `undefined` instead." } }], "@typescript-eslint/no-restricted-types": ["error", { types: { null: "Use `undefined` instead." } }],
// Prettier plugin config (for validating and fixing formatting) // Prettier plugin config (for validating and fixing formatting)
"prettier/prettier": "error", "prettier/prettier": "error",

File diff suppressed because it is too large Load diff

View file

@ -25,17 +25,17 @@
"wasm:watch-production": "cargo watch --postpone --watch-when-idle --workdir=wasm --shell \"wasm-pack build . --release --target=web -- --color=always\"" "wasm:watch-production": "cargo watch --postpone --watch-when-idle --workdir=wasm --shell \"wasm-pack build . --release --target=web -- --color=always\""
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^20.14.12", "@types/node": "^22.6.1",
"@typescript-eslint/eslint-plugin": "^7.17.0", "@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^7.17.0", "@typescript-eslint/parser": "^8.7.0",
"concurrently": "^8.2.2", "concurrently": "^9.0.1",
"eslint-config-prettier": "^9.1.0", "eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1", "eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.29.1", "eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.1", "eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3", "prettier": "^3.3.3",
"ts-node": "^10.9.2", "ts-node": "^10.9.2",
"typescript": "^5.5.4", "typescript": "^5.6.2",
"vite": "^5.3.4" "vite": "^5.4.7"
} }
} }

View file

@ -105,6 +105,7 @@ class BezierDemo extends HTMLElement implements Demo {
} }
getSliderUnit(sliderValue: number, variable: string): string { getSliderUnit(sliderValue: number, variable: string): string {
const _ = sliderValue;
const sliderUnit = this.sliderUnits[variable]; const sliderUnit = this.sliderUnits[variable];
return (Array.isArray(sliderUnit) ? "" : sliderUnit) || ""; return (Array.isArray(sliderUnit) ? "" : sliderUnit) || "";
} }

View file

@ -92,6 +92,7 @@ class SubpathDemo extends HTMLElement {
} }
getSliderUnit(sliderValue: number, variable: string): string { getSliderUnit(sliderValue: number, variable: string): string {
const _ = sliderValue;
const sliderUnit = this.sliderUnits[variable]; const sliderUnit = this.sliderUnits[variable];
return (Array.isArray(sliderUnit) ? "" : sliderUnit) || ""; return (Array.isArray(sliderUnit) ? "" : sliderUnit) || "";
} }

View file

@ -11,14 +11,14 @@
"license": "Apache-2.0", "license": "Apache-2.0",
"homepage": "https://graphite.rs", "homepage": "https://graphite.rs",
"devDependencies": { "devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.1.1", "@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^7.1.1", "@typescript-eslint/parser": "^8.7.0",
"eslint": "^8.57.0", "eslint": "^9.11.1",
"eslint-config-airbnb-base": "^15.0.0", "eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0", "eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1", "eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.1.3", "eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.2.5", "prettier": "^3.3.3",
"sass": "^1.71.1" "sass": "^1.78.0"
} }
} }