Skip to content

Commit ca146a5

Browse files
authored
chore(publish): Fix publish order for @sentry/types (#18429)
Types depends on core but we accidentally published it before core. Not the end of the world but theoretically, if publishing core failed, we would have published a faulty types package. h/t @BYK for detecting this! Closes #18431
1 parent c786fc5 commit ca146a5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.craft.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ preReleaseCommand: bash scripts/craft-pre-release.sh
44
targets:
55
# NPM Targets
66
## 1. Base Packages, node or browser SDKs depend on
7-
## 1.1 Types
8-
- name: npm
9-
id: '@sentry/types'
10-
includeNames: /^sentry-types-\d.*\.tgz$/
11-
## 1.2 Core SDKs
7+
## 1.1 Core SDKs
128
- name: npm
139
id: '@sentry/core'
1410
includeNames: /^sentry-core-\d.*\.tgz$/
11+
## 1.2 Types
12+
- name: npm
13+
id: '@sentry/types'
14+
includeNames: /^sentry-types-\d.*\.tgz$/
1515
- name: npm
1616
id: '@sentry/node-core'
1717
includeNames: /^sentry-node-core-\d.*\.tgz$/

0 commit comments

Comments
 (0)