Skip to content

Commit 88d66db

Browse files
committed
ref: Do not manually run build:types
1 parent 257b151 commit 88d66db

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

nx.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"targets": {
5353
"@sentry/serverless": {
5454
"build:bundle": {
55-
"dependsOn": [],
55+
"dependsOn": ["^build:types"],
5656
"outputs": [
5757
"{projectRoot}/build/aws"
5858
]

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"private": true,
33
"scripts": {
4-
"build": "node ./scripts/verify-packages-versions.js && run-s build:types build:pack build:bundle",
4+
"build": "node ./scripts/verify-packages-versions.js && run-p build:pack build:bundle",
55
"build:bundle": "lerna run build:bundle",
6-
"build:dev": "run-p build:types build:pack",
6+
"build:dev": "yarn build:pack",
77
"build:dev:filter": "lerna run build:dev --include-filtered-dependencies --include-filtered-dependents --scope",
88
"build:pack": "lerna run build:pack",
99
"build:types": "lerna run build:types",

0 commit comments

Comments
 (0)