diff --git a/dev-packages/browser-integration-tests/package.json b/dev-packages/browser-integration-tests/package.json index 0e936d085ee5..346f18b2648b 100644 --- a/dev-packages/browser-integration-tests/package.json +++ b/dev-packages/browser-integration-tests/package.json @@ -45,6 +45,9 @@ "dependencies": { "@babel/preset-typescript": "^7.16.7", "@playwright/test": "^1.31.1", + "@sentry/browser": "7.91.0", + "@sentry/tracing": "7.91.0", + "@sentry-internal/rrweb": "2.6.0", "axios": "1.6.0", "babel-loader": "^8.2.2", "html-webpack-plugin": "^5.5.0", diff --git a/dev-packages/node-integration-tests/package.json b/dev-packages/node-integration-tests/package.json index eafbfa320a27..ef27c4cd7e4f 100644 --- a/dev-packages/node-integration-tests/package.json +++ b/dev-packages/node-integration-tests/package.json @@ -18,6 +18,8 @@ "test:watch": "yarn test --watch" }, "dependencies": { + "@sentry/node": "7.91.0", + "@sentry/tracing": "7.91.0", "@prisma/client": "3.15.2", "@types/mongodb": "^3.6.20", "@types/mysql": "^2.15.21", diff --git a/nx.json b/nx.json index 871546e98a4e..a8b8f213eab2 100644 --- a/nx.json +++ b/nx.json @@ -3,14 +3,7 @@ "default": { "runner": "nx/tasks-runners/default", "options": { - "cacheableOperations": [ - "build:bundle", - "build:transpile", - "build:types", - "lint:eslint", - "test:unit", - "build:tarball" - ], + "cacheableOperations": ["build:bundle", "build:transpile", "build:types", "lint", "test:unit", "build:tarball"], "cacheDirectory": ".nxcache" } } @@ -34,15 +27,16 @@ "build:transpile": { "inputs": ["production", "^production"], "dependsOn": ["^build:transpile"], - "outputs": ["{projectRoot}/build/npm", "{projectRoot}/build/esm", "{projectRoot}/build/cjs"] + "outputs": ["{projectRoot}/build"] }, "build:types": { "inputs": ["production", "^production"], "dependsOn": ["^build:types"], "outputs": ["{projectRoot}/build/**/*.d.ts"] }, - "lint:eslint": { + "lint": { "inputs": ["default"], + "dependsOn": ["^build:types", "build:types"], "outputs": [] }, "test:unit": {