From be9886e0ab5dd9a8c93485555b7581d3147917db Mon Sep 17 00:00:00 2001 From: Dmitrii Gridnev Date: Wed, 31 Jul 2024 09:50:49 +0200 Subject: [PATCH] fix: package build Fix package build. Executables were not included in the package. --- qase-cypress/package.json | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/qase-cypress/package.json b/qase-cypress/package.json index a7fa4b8d..e83f1a7f 100644 --- a/qase-cypress/package.json +++ b/qase-cypress/package.json @@ -1,6 +1,6 @@ { "name": "cypress-qase-reporter", - "version": "2.1.0-beta.1", + "version": "2.1.0-beta.2", "description": "Qase Cypress Reporter", "homepage": "https://github.com/qase-tms/qase-javascript", "sideEffects": false, @@ -11,7 +11,8 @@ "./mocha": "./dist/mocha.js", "./reporter": "./dist/reporter.js", "./package.json": "./package.json", - "./plugin": "./dist/plugin.js" + "./plugin": "./dist/plugin.js", + "./hooks": "./dist/hooks.js" }, "typesVersions": { "*": { @@ -59,8 +60,5 @@ "jest": "^29.5.0", "mocha": "^10.2.0", "ts-jest": "^29.1.0" - }, - "files": [ - "plugin.js" - ] + } }