From 55c0fe2595fa804de4207c63bb9020b1a915aaa6 Mon Sep 17 00:00:00 2001 From: NP Date: Sun, 24 Sep 2023 03:08:16 +0300 Subject: [PATCH 1/2] chore: fix postinstall deps missed on install --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 1efbf93..8f80c13 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,9 @@ }, "dependencies": { "shell-quote": "^1.7.2", - "yargs": "^17.2.1" + "yargs": "^17.2.1", + "rimraf": "^5.0.1", + "tar-fs": "^3.0.4" }, "description": "PostgreSQL SQL syntax beautifier.", "devDependencies": { @@ -32,9 +34,7 @@ "eslint": "^8.39.0", "eslint-config-canonical": "^41.0.3", "husky": "^8.0.0", - "rimraf": "^5.0.1", "semantic-release": "^20.1.3", - "tar-fs": "^3.0.4", "ts-node": "^10.9.1", "typescript": "^5.0.4" }, From 8a9e82602c47540956f0246c64ec24b36875800c Mon Sep 17 00:00:00 2001 From: NP Date: Sun, 24 Sep 2023 03:13:39 +0300 Subject: [PATCH 2/2] chore: fix postinstall deps missed on install --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 8f80c13..b68338e 100644 --- a/package.json +++ b/package.json @@ -19,10 +19,10 @@ "pg-formatter": "dist/bin/index.js" }, "dependencies": { - "shell-quote": "^1.7.2", - "yargs": "^17.2.1", "rimraf": "^5.0.1", - "tar-fs": "^3.0.4" + "shell-quote": "^1.7.2", + "tar-fs": "^3.0.4", + "yargs": "^17.2.1" }, "description": "PostgreSQL SQL syntax beautifier.", "devDependencies": {