diff --git a/package.json b/package.json index 339decdc3..ba0b33408 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "private": true, "scripts": { "link": "lerna link --force-local", - "build": "npm run clean && npm run link && lerna run build", + "build": "npm run clean && npm run link && lerna run build --stream", "test": "npm run build && npm run run-test", "clean": "lerna run clean", "release": "lerna publish --yes", diff --git a/packages/allure-jest/tsconfig.json b/packages/allure-jest/tsconfig.json index 244dd2452..c70ba7e24 100644 --- a/packages/allure-jest/tsconfig.json +++ b/packages/allure-jest/tsconfig.json @@ -5,6 +5,7 @@ ], "compilerOptions": { "types": [ + "jasmine", "node", "jest" ], diff --git a/packages/allure-js-commons/index.ts b/packages/allure-js-commons/index.ts index fefc4ad57..796e2931a 100644 --- a/packages/allure-js-commons/index.ts +++ b/packages/allure-js-commons/index.ts @@ -1,3 +1,4 @@ +import "./src/properties"; export { AllureRuntime } from "./src/AllureRuntime"; export { InMemoryAllureWriter } from "./src/writers"; export { AllureConfig, IAllureConfig } from "./src/AllureConfig";