From 228f6561b758b8ff30e8103616febd9b4067fd4f Mon Sep 17 00:00:00 2001 From: coyotte508 Date: Tue, 7 May 2024 13:38:09 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=85=20Fix=20E2E=3F!?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- e2e/.gitignore | 2 ++ packages/tasks/package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 e2e/.gitignore diff --git a/e2e/.gitignore b/e2e/.gitignore new file mode 100644 index 000000000..cc850e813 --- /dev/null +++ b/e2e/.gitignore @@ -0,0 +1,2 @@ +# Modified during E2E tests +.npmrc \ No newline at end of file diff --git a/packages/tasks/package.json b/packages/tasks/package.json index 2b77cb7c8..09a35824f 100644 --- a/packages/tasks/package.json +++ b/packages/tasks/package.json @@ -23,7 +23,7 @@ "lint:check": "eslint --ext .cjs,.ts .", "format": "prettier --write .", "format:check": "prettier --check .", - "prepublishOnly": "pnpm run inference-codegen && git diff --name-only --exit-code && pnpm run build", + "prepublishOnly": "pnpm run inference-codegen && git diff . --name-only --exit-code && pnpm run build", "build": "tsup src/index.ts --format cjs,esm --clean && tsc --emitDeclarationOnly --declaration", "prepare": "pnpm run build", "check": "tsc",