Skip to content

Commit c769958

Browse files
authored
build: Fix nx-config for lint (#10050)
1 parent a696aef commit c769958

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

dev-packages/browser-integration-tests/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@
4545
"dependencies": {
4646
"@babel/preset-typescript": "^7.16.7",
4747
"@playwright/test": "^1.31.1",
48+
"@sentry/browser": "7.91.0",
49+
"@sentry/tracing": "7.91.0",
50+
"@sentry-internal/rrweb": "2.6.0",
4851
"axios": "1.6.0",
4952
"babel-loader": "^8.2.2",
5053
"html-webpack-plugin": "^5.5.0",

dev-packages/node-integration-tests/package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
"test:watch": "yarn test --watch"
1919
},
2020
"dependencies": {
21+
"@sentry/node": "7.91.0",
22+
"@sentry/tracing": "7.91.0",
2123
"@prisma/client": "3.15.2",
2224
"@types/mongodb": "^3.6.20",
2325
"@types/mysql": "^2.15.21",

nx.json

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,7 @@
33
"default": {
44
"runner": "nx/tasks-runners/default",
55
"options": {
6-
"cacheableOperations": [
7-
"build:bundle",
8-
"build:transpile",
9-
"build:types",
10-
"lint:eslint",
11-
"test:unit",
12-
"build:tarball"
13-
],
6+
"cacheableOperations": ["build:bundle", "build:transpile", "build:types", "lint", "test:unit", "build:tarball"],
147
"cacheDirectory": ".nxcache"
158
}
169
}
@@ -34,15 +27,16 @@
3427
"build:transpile": {
3528
"inputs": ["production", "^production"],
3629
"dependsOn": ["^build:transpile"],
37-
"outputs": ["{projectRoot}/build/npm", "{projectRoot}/build/esm", "{projectRoot}/build/cjs"]
30+
"outputs": ["{projectRoot}/build"]
3831
},
3932
"build:types": {
4033
"inputs": ["production", "^production"],
4134
"dependsOn": ["^build:types"],
4235
"outputs": ["{projectRoot}/build/**/*.d.ts"]
4336
},
44-
"lint:eslint": {
37+
"lint": {
4538
"inputs": ["default"],
39+
"dependsOn": ["^build:types", "build:types"],
4640
"outputs": []
4741
},
4842
"test:unit": {

0 commit comments

Comments
 (0)