From 9006407df4adbf94a179aa49c8f6f072195507eb Mon Sep 17 00:00:00 2001 From: Benny Neugebauer Date: Mon, 14 Aug 2023 11:14:03 +0200 Subject: [PATCH] fix: Git working directory not clean --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b26948fa..c67f05b1 100644 --- a/package.json +++ b/package.json @@ -74,7 +74,7 @@ "dist": "yarn clean && yarn build", "docs": "yarn docs:build", "docs:build": "yarn typedoc", - "docs:release": "yarn docs:build && git add docs/* && git commit -m \"docs: Updated API\"", + "docs:release": "yarn docs:build && git add docs/* && git commit -m \"docs: Updated API\" && git push origin", "fix": "yarn fix:other && yarn fix:code", "fix:code": "yarn lint:code --fix", "fix:other": "yarn prettier --write",