diff --git a/package-lock.json b/package-lock.json index 528bd53..eb96cff 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "editorconfig-checker", - "version": "3.0.0", + "version": "3.0.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 50fb6a1..36bf481 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "editorconfig-checker", - "version": "3.0.1", + "version": "3.0.2", "description": "A tool to verify that your files are in harmony with your .editorconfig", "main": "src/index.js", "bin": { diff --git a/src/index.ts b/src/index.ts index edc9b90..3e5fb9b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -13,7 +13,7 @@ import { removeFile } from "./utils"; -const CORE_VERSION = "2.0.1"; +const CORE_VERSION = "2.0.2"; const execute = () => { const ecProcess = spawn(`${binary()}`, process.argv.slice(2));