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")));