Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion js/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,10 @@ declare module '@sentry/cli' {

proposeVersion(): Promise<string>;

uploadSourceMaps(release: string, options: SentryCliUploadSourceMapsOptions): Promise<string>;
uploadSourceMaps(
release: string,
options: SentryCliUploadSourceMapsOptions & { live?: boolean | 'rejectOnError' }
): Promise<string>;

listDeploys(release: string): Promise<string>;

Expand Down
1 change: 1 addition & 0 deletions js/releases/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ class Releases {
* ext: ['js', 'map', 'jsbundle', 'bundle'], // override file extensions to scan for
* projects: ['node'], // provide a list of projects
* decompress: false // decompress gzip files before uploading
* live: true // whether to inherit stdio to display `sentry-cli` output directly.
* });
*
* @param {string} release Unique name of the release.
Expand Down