Commit ed21b753 authored by R. RyanTM's avatar R. RyanTM
Browse files

vencord: 1.8.8 -> 1.8.9

parent c9b34066
Loading
Loading
Loading
Loading
+11 −8
Original line number Diff line number Diff line
{
    "name": "vencord",
    "version": "1.8.8",
    "version": "1.8.9",
    "lockfileVersion": 3,
    "requires": true,
    "packages": {
        "": {
            "name": "vencord",
            "version": "1.8.8",
            "version": "1.8.9",
            "license": "GPL-3.0-or-later",
            "dependencies": {
                "@sapphi-red/web-noise-suppressor": "0.3.3",
@@ -662,6 +662,7 @@
            "version": "0.11.14",
            "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz",
            "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==",
            "deprecated": "Use @eslint/config-array instead",
            "dev": true,
            "dependencies": {
                "@humanwhocodes/object-schema": "^2.0.2",
@@ -689,6 +690,7 @@
            "version": "2.0.3",
            "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz",
            "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==",
            "deprecated": "Use @eslint/object-schema instead",
            "dev": true
        },
        "node_modules/@jridgewell/gen-mapping": {
@@ -880,9 +882,9 @@
            "dev": true
        },
        "node_modules/@types/lodash": {
            "version": "4.17.4",
            "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.4.tgz",
            "integrity": "sha512-wYCP26ZLxaT3R39kiN2+HcJ4kTd3U1waI/cY7ivWYqFP6pW3ZNpvi6Wd6PHZx7T/t8z0vlkXMg3QYLa7DZ/IJQ==",
            "version": "4.17.5",
            "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.5.tgz",
            "integrity": "sha512-MBIOHVZqVqgfro1euRDWX7OO0fBVUUMrN6Pwm8LQsz8cWhEpihlvR70ENj3f40j58TNxZaWv2ndSkInykNBBJw==",
            "dev": true
        },
        "node_modules/@types/minimist": {
@@ -4352,6 +4354,7 @@
            "version": "1.5.1",
            "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz",
            "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==",
            "deprecated": "You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other.\n\n(For a CapTP with native promises, see @endo/eventual-send and @endo/captp)",
            "dev": true,
            "engines": {
                "node": ">=0.6.0",
@@ -5277,9 +5280,9 @@
            }
        },
        "node_modules/terser": {
            "version": "5.31.0",
            "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.0.tgz",
            "integrity": "sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==",
            "version": "5.31.1",
            "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.1.tgz",
            "integrity": "sha512-37upzU1+viGvuFtBo9NPufCb9dwM0+l9hMxYyWfBA+fbwrPqNJAhbZ6W47bBFnZHKHTUBnMvi87434qq+qnxOg==",
            "dev": true,
            "dependencies": {
                "@jridgewell/source-map": "^0.3.3",
+4 −4
Original line number Diff line number Diff line
@@ -5,8 +5,8 @@
, buildWebExtension ? false
}:
let
  version = "1.8.8";
  gitHash = "a66138f";
  version = "1.8.9";
  gitHash = "008227c";
in
buildNpmPackage rec {
  pname = "vencord";
@@ -16,7 +16,7 @@ buildNpmPackage rec {
    owner = "Vendicated";
    repo = "Vencord";
    rev = "v${version}";
    hash = "sha256-1T5WvD7z/WhU0X2LiuUNtlncKrGyDO5j1oB6VCD7V6w=";
    hash = "sha256-ASIb7iNtbdx9zAe9o/73M1hF9uBvXid63Vlx7wLpV5U=";
  };

  ESBUILD_BINARY_PATH = lib.getExe (esbuild.overrideAttrs (final: _: {
@@ -34,7 +34,7 @@ buildNpmPackage rec {
  npmRebuildFlags = [ "|| true" ];

  makeCacheWritable = true;
  npmDepsHash = "sha256-QYsiRsWP5LljD4e4FUmlIRutnzr5dIOZ6dqUMEECPcw=";
  npmDepsHash = "sha256-4yC//tdUiEDoAV1lGYdFLW/bO69IMvG4SQV7bDotfyk=";
  npmFlags = [ "--legacy-peer-deps" ];
  npmBuildScript = if buildWebExtension then "buildWeb" else "build";
  npmBuildFlags = [ "--" "--standalone" "--disable-updater" ];