Skip to content
This repository was archived by the owner on Nov 20, 2023. It is now read-only.
Merged
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
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,32 @@ Also, check the [example](example) directory.
| sourceMapReference | `boolean` | optional | See above. |
| rewrite | `boolean` | optional | See above. |

Example:

```
const SentryCliPlugin = require('@sentry/webpack-plugin');

const config = {
plugins: [
new SentryCliPlugin({
include: [
{
paths: ['./packages'],
urlPrefix: '~/path/to/packages',
},
{
paths: ['./client'],
urlPrefix: '~/path/to/client',
},
],
ignoreFile: '.sentrycliignore',
ignore: ['node_modules', 'webpack.config.js'],
configFile: 'sentry.properties',
}),
],
};
```

#### <a name="setCommits"></a>options.setCommits:

| Option | Type | Required | Description |
Expand Down