Skip to content

Commit b9f2afe

Browse files
committed
s/sentry-unplugin/bundler-plugin-core
1 parent 1adb595 commit b9f2afe

File tree

18 files changed

+22
-21
lines changed

18 files changed

+22
-21
lines changed

packages/esbuild-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"lint": "eslint ./src ./test"
3737
},
3838
"dependencies": {
39-
"@sentry/sentry-unplugin": "0.0.0-alpha.0"
39+
"@sentry/bundler-plugin-core": "0.0.0-alpha.0"
4040
},
4141
"devDependencies": {
4242
"@babel/core": "7.18.5",
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
export { sentryEsbuildPlugin as default } from "@sentry/sentry-unplugin";
2-
export type { Options } from "@sentry/sentry-unplugin";
1+
export { sentryEsbuildPlugin as default } from "@sentry/bundler-plugin-core";
2+
export type { Options } from "@sentry/bundler-plugin-core";

packages/integration-tests/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"@sentry/sentry-unplugin": "0.0.0-alpha.0",
1717
"@swc/jest": "^0.2.21",
1818
"@types/jest": "^28.1.3",
19+
"@sentry/bundler-plugin-core": "0.0.0-alpha.0",
1920
"@types/webpack4": "npm:@types/[email protected]",
2021
"esbuild": "0.14.49",
2122
"eslint": "^8.18.0",

packages/integration-tests/utils/create-cjs-bundles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
sentryVitePlugin,
1111
sentryWebpackPlugin,
1212
Options,
13-
} from "@sentry/sentry-unplugin";
13+
} from "@sentry/bundler-plugin-core";
1414

1515
export function createCjsBundles(
1616
entrypoints: { [name: string]: string },

packages/playground/build-esbuild.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const { sentryEsbuildPlugin } = require("@sentry/sentry-unplugin");
1+
const { sentryEsbuildPlugin } = require("@sentry/bundler-plugin-core");
22
const { build } = require("esbuild");
33
const placeHolderOptions = require("./config.json");
44

packages/playground/build-webpack4.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// @ts-check
22
const path = require("path");
33
const webpack4 = require("webpack4");
4-
const { sentryWebpackPlugin } = require("@sentry/sentry-unplugin");
4+
const { sentryWebpackPlugin } = require("@sentry/bundler-plugin-core");
55

66
const placeHolderOptions = require("./config.json");
77

packages/playground/build-webpack5.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// @ts-check
22
const path = require("path");
33
const webpack5 = require("webpack");
4-
const { sentryWebpackPlugin } = require("@sentry/sentry-unplugin");
4+
const { sentryWebpackPlugin } = require("@sentry/bundler-plugin-core");
55

66
const placeHolderOptions = require("./config.json");
77

packages/playground/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"dependencies": {
1717
"@sentry/integrations": "^7.11.1",
1818
"@sentry/node": "^7.11.1",
19-
"@sentry/sentry-unplugin": "0.0.0-alpha.0",
19+
"@sentry/bundler-plugin-core": "0.0.0-alpha.0",
2020
"@types/express": "^4.17.13",
2121
"@types/http-proxy": "^1.17.9",
2222
"esbuild": "0.14.49",

packages/playground/rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// @ts-check
22
import commonjs from "@rollup/plugin-commonjs";
33
import resolve from "@rollup/plugin-node-resolve";
4-
import { sentryRollupPlugin } from "@sentry/sentry-unplugin";
4+
import { sentryRollupPlugin } from "@sentry/bundler-plugin-core";
55
import placeHolderOptions from "./config.json";
66

77
const input = ["src/entrypoint1.js"];

packages/playground/vite.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @ts-check
2-
import { sentryVitePlugin } from "@sentry/sentry-unplugin";
2+
import { sentryVitePlugin } from "@sentry/bundler-plugin-core";
33
import { defineConfig } from "vite";
44
import * as path from "path";
55
import placeHolderOptions from "./config.json";

0 commit comments

Comments
 (0)