From c768712e439f2ace19cf68bbadced615eb7b93ea Mon Sep 17 00:00:00 2001 From: Johannes Loher Date: Wed, 17 Mar 2021 17:35:26 +0100 Subject: [PATCH] Somemore small fixes --- .eslintrc.js | 6 ------ gulpfile.js | 1 - 2 files changed, 7 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 2e7be783..616d3efc 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -25,11 +25,5 @@ module.exports = { "@typescript-eslint/no-var-requires": "off", }, }, - { - files: ["./test/**/*.js"], - env: { - "jest/globals": true, - }, - }, ], }; diff --git a/gulpfile.js b/gulpfile.js index 4348cab8..f35486d9 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -178,7 +178,6 @@ function getTargetVersion(currentVersion, release) { */ function bumpVersion(cb) { const packageJson = fs.readJSONSync("package.json"); - const packageLockJson = fs.existsSync("package-lock.json") ? fs.readJSONSync("package-lock.json") : undefined; const manifest = getManifest(); if (!manifest) cb(Error(chalk.red("Manifest JSON not found")));