Merge pull request #165436 from QuantMint/vieb-update

This commit is contained in:
Sandro 2022-03-27 14:29:34 +02:00 committed by GitHub
commit 4338157459
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 2595 additions and 3021 deletions

View File

@ -2,13 +2,13 @@
mkYarnPackage rec { mkYarnPackage rec {
pname = "vieb"; pname = "vieb";
version = "6.2.0"; version = "7.1.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Jelmerro"; owner = "Jelmerro";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "sha256-FuaN9iUxR5Y6SnNmuegmNJXn1BYKgcobquTL3thuByM="; sha256 = "sha256-4LGg3w/rleTyHJd4867dog+/fIXhtKbYgF1bYKwoh/I=";
}; };
packageJSON = ./package.json; packageJSON = ./package.json;

View File

@ -1,7 +1,7 @@
{ {
"name": "vieb", "name": "vieb",
"productName": "Vieb", "productName": "Vieb",
"version": "5.3.0", "version": "7.1.2",
"description": "Vim Inspired Electron Browser", "description": "Vim Inspired Electron Browser",
"main": "app/index.js", "main": "app/index.js",
"scripts": { "scripts": {
@ -14,7 +14,7 @@
"fix": "eslint --fix app .eslintrc.js build.js", "fix": "eslint --fix app .eslintrc.js build.js",
"lint": "eslint app .eslintrc.js build.js", "lint": "eslint app .eslintrc.js build.js",
"start": "electron app", "start": "electron app",
"test": "jest --testEnvironment jsdom --coverage --collectCoverageFrom 'app/**/*.js' -u && npm run lint && echo 'All good :)'" "test": "TZ=UTC jest --testEnvironment jsdom --coverage --collectCoverageFrom 'app/**/*.js' -u && npm run lint && echo 'All good :)'"
}, },
"repository": "https://github.com/Jelmerro/Vieb", "repository": "https://github.com/Jelmerro/Vieb",
"homepage": "https://vieb.dev", "homepage": "https://vieb.dev",
@ -28,23 +28,18 @@
"email": "Jelmerro@users.noreply.github.com", "email": "Jelmerro@users.noreply.github.com",
"license": "GPL-3.0-or-later", "license": "GPL-3.0-or-later",
"devDependencies": { "devDependencies": {
"archiver": "5.3.0", "electron": "17.0.1",
"electron": "13.1.4", "electron-builder": "22.14.13",
"electron-builder": "22.11.7", "eslint": "8.9.0",
"eslint": "7.29.0", "eslint-plugin-sort-keys": "2.3.5",
"eslint-plugin-compat": "3.9.0", "jest": "27.5.1",
"eslint-plugin-sort-keys-fix": "1.1.1", "jest-environment-jsdom": "27.5.1"
"jest": "27.0.6",
"jest-environment-jsdom": "27.0.6"
}, },
"dependencies": { "dependencies": {
"7zip-bin": "5.1.1", "7zip-bin": "5.1.1",
"@cliqz/adblocker-electron": "1.22.2", "@cliqz/adblocker-electron": "1.23.6",
"@cliqz/adblocker-electron-preload": "1.22.2", "@cliqz/adblocker-electron-preload": "1.23.6",
"is-svg": "4.3.1", "is-svg": "4.3.2",
"rimraf": "3.0.2" "rimraf": "3.0.2"
}, }
"browserslist": [
"last 2 Chrome versions"
]
} }

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff