From 5c69141b16a98556ea489757e152559b74b66d7b Mon Sep 17 00:00:00 2001 From: Jesse Luoto Date: Sun, 11 Aug 2024 21:55:33 +0300 Subject: [PATCH] Revert "Fix deploy script to not bump version on deploy" This reverts commit a355517d11b6703f0c8dc94477e93d603c027d05. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d809711..0e8509f 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "scripts": { "start": "tsx src/index.ts", "build": "pkgroll", - "deploy": "npm run build && npm publish", + "deploy": "npm run build && npm version patch && npm publish", "test": "npm run test:unit && npm run test:e2e && npm run test:llm", "test:unit": "find src -name '*.test.ts' | xargs tsx --test", "test:e2e": "npm run build && find src -name '*.e2etest.ts' | xargs tsx --test --test-concurrency=1",