Skip to content

Commit b2f4dbe

Browse files
authored
meta: Update READMEs for v2 (getsentry#248)
1 parent 9c0def8 commit b2f4dbe

27 files changed

+851
-675
lines changed

README.md

+5-9
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66

77
# Sentry Bundler Plugins
88

9-
Universal Sentry plugin for various JavaScript bundlers. Based on [unjs/unplugin](https://github.com/unjs/unplugin). Currently supports Rollup, Vite, esbuild, Webpack 4 and Webpack 5.
9+
Sentry plugins for various JavaScript bundlers. Currently supporting Rollup, Vite, esbuild, Webpack 4 and Webpack 5.
1010

1111
Check out the individual packages for more information and examples:
1212

13-
- [Rollup](https://github.com/getsentry/sentry-javascript-bundler-plugins/tree/main/packages/rollup-plugin)
14-
- [Vite](https://github.com/getsentry/sentry-javascript-bundler-plugins/tree/main/packages/vite-plugin)
15-
- [esbuild](https://github.com/getsentry/sentry-javascript-bundler-plugins/tree/main/packages/esbuild-plugin)
16-
- [Webpack](https://github.com/getsentry/sentry-javascript-bundler-plugins/tree/main/packages/webpack-plugin)
13+
- [Rollup](https://www.npmjs.com/package/@sentry/rollup-plugin)
14+
- [Vite](https://www.npmjs.com/package/@sentry/vite-plugin)
15+
- [esbuild](https://www.npmjs.com/package/@sentry/esbuild-plugin)
16+
- [Webpack](https://www.npmjs.com/package/@sentry/webpack-plugin)
1717

1818
### Features
1919

@@ -24,12 +24,8 @@ The Sentry Bundler Plugins take care of Sentry-related tasks at build time of yo
2424
- Automatic release name discovery (based on CI environment - Vercel, AWS, Heroku, CircleCI, or current Git SHA)
2525
- Automatically associate errors with releases (Release injection)
2626

27-
The Sentry Bundler Plugins can be used as a replacement of [Sentry CLI](https://docs.sentry.io/learn/cli/) for these tasks.
28-
2927
### More information
3028

3129
- [Sentry Documentation](https://docs.sentry.io/quickstart/)
32-
- [Troubleshooting Sourcemaps](https://docs.sentry.io/platforms/javascript/sourcemaps/troubleshooting_js/)
33-
- [Sentry CLI](https://docs.sentry.io/learn/cli/)
3430
- [Sentry Discord](https://discord.gg/Ww9hbqr)
3531
- [Sentry Stackoverflow](http://stackoverflow.com/questions/tagged/sentry)

packages/bundler-plugin-core/README.md

+4-6
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ Core package containing the bundler-agnostic functionality used by the bundler p
1010

1111
Check out the individual packages for more information and examples:
1212

13-
- [Rollup](https://github.com/getsentry/sentry-javascript-bundler-plugins/tree/main/packages/rollup-plugin)
14-
- [Vite](https://github.com/getsentry/sentry-javascript-bundler-plugins/tree/main/packages/vite-plugin)
15-
- [esbuild](https://github.com/getsentry/sentry-javascript-bundler-plugins/tree/main/packages/esbuild-plugin)
16-
- [Webpack](https://github.com/getsentry/sentry-javascript-bundler-plugins/tree/main/packages/webpack-plugin)
13+
- [Rollup](https://www.npmjs.com/package/@sentry/rollup-plugin)
14+
- [Vite](https://www.npmjs.com/package/@sentry/vite-plugin)
15+
- [esbuild](https://www.npmjs.com/package/@sentry/esbuild-plugin)
16+
- [Webpack](https://www.npmjs.com/package/@sentry/webpack-plugin)
1717

1818
### Features
1919

@@ -27,7 +27,5 @@ The Sentry bundler plugin core package contains the following functionality:
2727
### More information
2828

2929
- [Sentry Documentation](https://docs.sentry.io/quickstart/)
30-
- [Troubleshooting Sourcemaps](https://docs.sentry.io/platforms/javascript/sourcemaps/troubleshooting_js/)
31-
- [Sentry CLI](https://docs.sentry.io/learn/cli/)
3230
- [Sentry Discord](https://discord.gg/Ww9hbqr)
3331
- [Sentry Stackoverflow](http://stackoverflow.com/questions/tagged/sentry)

packages/dev-utils/.eslintrc.js

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
const jestPackageJson = require("jest/package.json");
2+
3+
/** @type {import('eslint').ESLint.Options} */
4+
module.exports = {
5+
root: true,
6+
extends: ["@sentry-internal/eslint-config/base"],
7+
ignorePatterns: [".eslintrc.js"],
8+
parserOptions: {
9+
tsconfigRootDir: __dirname,
10+
project: ["./tsconfig.json"],
11+
},
12+
env: {
13+
node: true,
14+
},
15+
settings: {
16+
jest: {
17+
version: jestPackageJson.version,
18+
},
19+
},
20+
};

packages/dev-utils/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from "./src/generate-documentation-table";

packages/dev-utils/package.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "@sentry-internal/dev-utils",
3+
"version": "0.7.2",
4+
"license": "MIT",
5+
"private": true,
6+
"files": [
7+
"src"
8+
],
9+
"peerDependencies": {
10+
"eslint": "^8.14.0"
11+
},
12+
"devDependencies": {
13+
"eslint": "^8.14.0"
14+
},
15+
"volta": {
16+
"extends": "../../package.json"
17+
}
18+
}

0 commit comments

Comments
 (0)