From f2237ad03db970ce7deff61d463bc64510661d0c Mon Sep 17 00:00:00 2001 From: Helmi Satria Date: Sat, 6 May 2023 18:35:00 +0700 Subject: [PATCH] fix: bin path --- .gitignore | 3 ++- package.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 7bc0b2b..c4a438f 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,5 @@ node_modules/ /playwright/.cache/ .env output/*.csv -dist \ No newline at end of file +dist +bin \ No newline at end of file diff --git a/package.json b/package.json index c4b13a7..aebddc5 100644 --- a/package.json +++ b/package.json @@ -39,6 +39,6 @@ "start": "ts-node src/crawl.ts", "dev": "ts-node-dev --respawn --transpile-only src/crawl.ts", "build": "tsc", - "build:pkg": "pkg . --out-path dist/bin" + "build:pkg": "pkg . --out-path ./bin" } }