diff --git a/nx.json b/nx.json index a4cbbbcd85da..096a0b0c9620 100644 --- a/nx.json +++ b/nx.json @@ -7,7 +7,8 @@ "build:bundle", "build:transpile", "build:types", - "lint:eslint" + "lint:eslint", + "test:unit" ], "cacheDirectory": ".nxcache" } @@ -69,6 +70,11 @@ "lint:eslint": { "inputs": ["default"], "outputs": [] + }, + "test:unit": { + "dependsOn": ["build:types", "^build:types", "build:transpile", "^build:transpile"], + "inputs": ["default"], + "outputs": ["{projectRoot}/coverage"] } } } diff --git a/packages/integrations/package.json b/packages/integrations/package.json index 273b3468d186..f215f7ee1166 100644 --- a/packages/integrations/package.json +++ b/packages/integrations/package.json @@ -22,6 +22,7 @@ "tslib": "^1.9.3" }, "devDependencies": { + "@sentry/browser": "7.38.0", "chai": "^4.1.2" }, "scripts": { diff --git a/packages/node/package.json b/packages/node/package.json index 9cec91e64dca..fdff49e96e93 100644 --- a/packages/node/package.json +++ b/packages/node/package.json @@ -25,6 +25,7 @@ "tslib": "^1.9.3" }, "devDependencies": { + "@sentry/tracing": "7.38.0", "@types/cookie": "0.3.2", "@types/express": "^4.17.14", "@types/lru-cache": "^5.1.0",