diff --git a/.gitignore b/.gitignore index b1f9f76..99dec66 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -/build +/lib /node_modules \ No newline at end of file diff --git a/.npmignore b/.npmignore index b1f9f76..30bc162 100644 --- a/.npmignore +++ b/.npmignore @@ -1,2 +1 @@ -/build /node_modules \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index fb2c328..0e5e68e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "srt-zahirifier", - "version": "0.0.1-alpha", + "version": "0.0.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index e8656e3..1445b7d 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,12 @@ { "name": "srt-zahirifier", - "version": "0.0.1", + "version": "0.0.3", "description": "", "bin": { - "zahirify": "./build/cli.js" + "zahirify": "lib/cli.js" }, "scripts": { - "build": "tsc" + "prepublish": "tsc" }, "author": "iGoodie", "license": "ISC", diff --git a/tsconfig.json b/tsconfig.json index df1192d..4c60491 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "outDir": "./build", + "outDir": "./lib", "declaration": true, "esModuleInterop": true }