Skip to content
Open
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
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@ custom:
authToken: my-sentry-api-key
release:
version: <RELEASE VERSION>
sourcemaps: true
refs:
- repository: <REPOSITORY NAME>
commit: <COMMIT HASH>
Expand All @@ -244,6 +245,9 @@ custom:
- any fixed string - Use a fixed string for the release. Serverless variables
are allowed.

* `sourcemaps` - if set to true, upload of sources and sourcemaps to sentry.io based
on files in `.serverless/<service>.zip`

* `refs` - If you have set up Sentry to collect commit data, you can use commit
refs to associate your commits with your Sentry releases. Refer to the
[Sentry Documentation](https://docs.sentry.io/learn/releases/) for details
Expand Down
142 changes: 116 additions & 26 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,14 @@
"eslint": "^5.0.1"
},
"dependencies": {
"@sentry/cli": "^1.41.1",
"adm-zip": "^0.4.13",
"bluebird": "^3.5.1",
"lodash": "^4.17.10",
"rmrf-promise": "^1.1.0",
"semver": "^5.5.0",
"superagent": "^3.8.3",
"tmp": "^0.1.0",
"uuid": "^3.3.2"
},
"peerDependencies": {
Expand Down
Loading