File tree Expand file tree Collapse file tree
packages/bundler-plugins/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import { transformAsync } from "@babel/core" ;
22import componentNameAnnotatePlugin , {
33 experimentalComponentNameAnnotatePlugin ,
4- } from "@sentry /babel-plugin-component-annotate " ;
4+ } from ".. /babel-plugin" ;
55import SentryCli from "@sentry/cli" ;
66import { debug } from "@sentry/core" ;
77import * as fs from "fs" ;
Original file line number Diff line number Diff line change 1- import type { Options } from "@sentry/bundler-plugin- core" ;
1+ import type { Options } from "../ core" ;
22import {
33 createSentryBuildPluginManager ,
44 generateReleaseInjectorCode ,
55 generateModuleMetadataInjectorCode ,
66 getDebugIdSnippet ,
77 createDebugIdUploadFunction ,
88 CodeInjection ,
9- } from "@sentry/bundler-plugin- core" ;
9+ } from "../ core" ;
1010import * as path from "node:path" ;
1111import { createRequire } from "node:module" ;
1212import { randomUUID } from "node:crypto" ;
@@ -308,5 +308,5 @@ export function sentryEsbuildPlugin(userOptions: Options = {}): any {
308308
309309// eslint-disable-next-line @typescript-eslint/no-explicit-any
310310export default sentryEsbuildPlugin ;
311- export type { Options as SentryEsbuildPluginOptions } from "@sentry/bundler-plugin- core" ;
312- export { sentryCliBinaryExists } from "@sentry/bundler-plugin- core" ;
311+ export type { Options as SentryEsbuildPluginOptions } from "../ core" ;
312+ export { sentryCliBinaryExists } from "../ core" ;
Original file line number Diff line number Diff line change 1- import type { Options } from "@sentry/bundler-plugin- core" ;
1+ import type { Options } from "../ core" ;
22import {
33 createSentryBuildPluginManager ,
44 generateReleaseInjectorCode ,
@@ -13,7 +13,7 @@ import {
1313 createComponentNameAnnotateHooks ,
1414 replaceBooleanFlagsInCode ,
1515 CodeInjection ,
16- } from "@sentry/bundler-plugin- core" ;
16+ } from "../ core" ;
1717import type { SourceMap } from "magic-string" ;
1818import MagicString from "magic-string" ;
1919import type { TransformResult } from "rollup" ;
@@ -261,5 +261,5 @@ export function sentryRollupPlugin(userOptions: Options = {}): any {
261261 return [ _rollupPluginInternal ( userOptions , "rollup" ) ] ;
262262}
263263
264- export type { Options as SentryRollupPluginOptions } from "@sentry/bundler-plugin- core" ;
265- export { sentryCliBinaryExists } from "@sentry/bundler-plugin- core" ;
264+ export type { Options as SentryRollupPluginOptions } from "../ core" ;
265+ export { sentryCliBinaryExists } from "../ core" ;
Original file line number Diff line number Diff line change 1- import type { SentryRollupPluginOptions } from "@sentry /rollup-plugin " ;
2- import { _rollupPluginInternal } from "@sentry /rollup-plugin " ;
1+ import type { SentryRollupPluginOptions } from ".. /rollup" ;
2+ import { _rollupPluginInternal } from ".. /rollup" ;
33import { createRequire } from "node:module" ;
44
55interface SentryVitePlugin {
@@ -30,5 +30,5 @@ export const sentryVitePlugin = (options?: SentryRollupPluginOptions): SentryVit
3030 ] ;
3131} ;
3232
33- export type { Options as SentryVitePluginOptions } from "@sentry/bundler-plugin- core" ;
34- export { sentryCliBinaryExists } from "@sentry/bundler-plugin- core" ;
33+ export type { Options as SentryVitePluginOptions } from "../ core" ;
34+ export { sentryCliBinaryExists } from "../ core" ;
Original file line number Diff line number Diff line change @@ -13,6 +13,6 @@ export const sentryWebpackPlugin: (options?: SentryWebpackPluginOptions) => any
1313 DefinePlugin,
1414 } ) ;
1515
16- export { sentryCliBinaryExists } from "@sentry/bundler-plugin- core" ;
16+ export { sentryCliBinaryExists } from "../ core" ;
1717
1818export type { SentryWebpackPluginOptions } ;
Original file line number Diff line number Diff line change @@ -7,6 +7,6 @@ const createSentryWebpackPlugin = sentryWebpackPluginFactory();
77export const sentryWebpackPlugin : ( options ?: SentryWebpackPluginOptions ) => any =
88 createSentryWebpackPlugin ;
99
10- export { sentryCliBinaryExists } from "@sentry/bundler-plugin- core" ;
10+ export { sentryCliBinaryExists } from "../ core" ;
1111
1212export type { SentryWebpackPluginOptions } ;
You can’t perform that action at this time.
0 commit comments