@sentry/webpack-plugin 2.0.0-alpha.5 → 2.0.0-alpha.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +6 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.mjs +6 -3
- package/dist/esm/index.mjs.map +1 -1
- package/package.json +4 -4
package/dist/cjs/index.js
CHANGED
|
@@ -33,7 +33,6 @@ function webpackReleaseInjectionPlugin(injectionCode) {
|
|
|
33
33
|
|
|
34
34
|
function webpackDebugIdInjectionPlugin() {
|
|
35
35
|
var pluginName = "sentry-webpack-debug-id-injection-plugin";
|
|
36
|
-
var debugIdSnippet = bundlerPluginCore.getDebugIdSnippet(uuid.v4());
|
|
37
36
|
return {
|
|
38
37
|
name: pluginName,
|
|
39
38
|
webpack: function webpack(compiler) {
|
|
@@ -43,14 +42,18 @@ function webpackDebugIdInjectionPlugin() {
|
|
|
43
42
|
compiler.options.plugins.push(new compiler.webpack.BannerPlugin({
|
|
44
43
|
raw: true,
|
|
45
44
|
include: /\.(js|ts|jsx|tsx|mjs|cjs)$/,
|
|
46
|
-
banner:
|
|
45
|
+
banner: function banner() {
|
|
46
|
+
return bundlerPluginCore.getDebugIdSnippet(uuid.v4());
|
|
47
|
+
}
|
|
47
48
|
}));
|
|
48
49
|
} else {
|
|
49
50
|
compiler.options.plugins.push( // eslint-disable-next-line @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-call
|
|
50
51
|
new webpack4.BannerPlugin({
|
|
51
52
|
raw: true,
|
|
52
53
|
include: /\.(js|ts|jsx|tsx|mjs|cjs)$/,
|
|
53
|
-
banner:
|
|
54
|
+
banner: function banner() {
|
|
55
|
+
return bundlerPluginCore.getDebugIdSnippet(uuid.v4());
|
|
56
|
+
}
|
|
54
57
|
}));
|
|
55
58
|
}
|
|
56
59
|
}
|
package/dist/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../src/index.ts"],"sourcesContent":["import { getDebugIdSnippet, Options, sentryUnpluginFactory } from \"@sentry/bundler-plugin-core\";\nimport { UnpluginOptions } from \"unplugin\";\nimport { v4 as uuidv4 } from \"uuid\";\n\n// eslint-disable-next-line @typescript-eslint/ban-ts-comment\n// @ts-ignore No typedefs for webpack 4\nimport { BannerPlugin as Webpack4BannerPlugin } from \"webpack-4\";\n\nfunction webpackReleaseInjectionPlugin(injectionCode: string): UnpluginOptions {\n const pluginName = \"sentry-webpack-release-injection-plugin\";\n\n return {\n name: pluginName,\n\n webpack(compiler) {\n if (compiler?.webpack?.BannerPlugin) {\n compiler.options.plugins.push(\n new compiler.webpack.BannerPlugin({\n raw: true,\n include: /\\.(js|ts|jsx|tsx|mjs|cjs)$/,\n banner: injectionCode,\n })\n );\n } else {\n compiler.options.plugins.push(\n // eslint-disable-next-line @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-call\n new Webpack4BannerPlugin({\n raw: true,\n include: /\\.(js|ts|jsx|tsx|mjs|cjs)$/,\n banner: injectionCode,\n })\n );\n }\n },\n };\n}\n\nfunction webpackDebugIdInjectionPlugin(): UnpluginOptions {\n const pluginName = \"sentry-webpack-debug-id-injection-plugin\";\n
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../src/index.ts"],"sourcesContent":["import { getDebugIdSnippet, Options, sentryUnpluginFactory } from \"@sentry/bundler-plugin-core\";\nimport { UnpluginOptions } from \"unplugin\";\nimport { v4 as uuidv4 } from \"uuid\";\n\n// eslint-disable-next-line @typescript-eslint/ban-ts-comment\n// @ts-ignore No typedefs for webpack 4\nimport { BannerPlugin as Webpack4BannerPlugin } from \"webpack-4\";\n\nfunction webpackReleaseInjectionPlugin(injectionCode: string): UnpluginOptions {\n const pluginName = \"sentry-webpack-release-injection-plugin\";\n\n return {\n name: pluginName,\n\n webpack(compiler) {\n if (compiler?.webpack?.BannerPlugin) {\n compiler.options.plugins.push(\n new compiler.webpack.BannerPlugin({\n raw: true,\n include: /\\.(js|ts|jsx|tsx|mjs|cjs)$/,\n banner: injectionCode,\n })\n );\n } else {\n compiler.options.plugins.push(\n // eslint-disable-next-line @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-call\n new Webpack4BannerPlugin({\n raw: true,\n include: /\\.(js|ts|jsx|tsx|mjs|cjs)$/,\n banner: injectionCode,\n })\n );\n }\n },\n };\n}\n\nfunction webpackDebugIdInjectionPlugin(): UnpluginOptions {\n const pluginName = \"sentry-webpack-debug-id-injection-plugin\";\n\n return {\n name: pluginName,\n\n webpack(compiler) {\n if (compiler?.webpack?.BannerPlugin) {\n compiler.options.plugins.push(\n new compiler.webpack.BannerPlugin({\n raw: true,\n include: /\\.(js|ts|jsx|tsx|mjs|cjs)$/,\n banner: () => getDebugIdSnippet(uuidv4()),\n })\n );\n } else {\n compiler.options.plugins.push(\n // eslint-disable-next-line @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-call\n new Webpack4BannerPlugin({\n raw: true,\n include: /\\.(js|ts|jsx|tsx|mjs|cjs)$/,\n banner: () => getDebugIdSnippet(uuidv4()),\n })\n );\n }\n },\n };\n}\n\nconst sentryUnplugin = sentryUnpluginFactory({\n releaseInjectionPlugin: webpackReleaseInjectionPlugin,\n debugIdInjectionPlugin: webpackDebugIdInjectionPlugin,\n});\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport const sentryWebpackPlugin: (options: Options) => any = sentryUnplugin.webpack;\n\nexport { sentryCliBinaryExists } from \"@sentry/bundler-plugin-core\";\nexport type { Options as SentryWebpackPluginOptions } from \"@sentry/bundler-plugin-core\";\n"],"names":["webpackReleaseInjectionPlugin","injectionCode","pluginName","name","webpack","compiler","BannerPlugin","options","plugins","push","raw","include","banner","Webpack4BannerPlugin","webpackDebugIdInjectionPlugin","getDebugIdSnippet","uuidv4","sentryUnplugin","sentryUnpluginFactory","releaseInjectionPlugin","debugIdInjectionPlugin","sentryWebpackPlugin"],"mappings":";;;;;;;;AAQA,SAASA,6BAAT,CAAuCC,aAAvC,EAA+E;EAC7E,IAAMC,UAAU,GAAG,yCAAnB,CAAA;EAEA,OAAO;AACLC,IAAAA,IAAI,EAAED,UADD;IAGLE,OAHK,EAAA,SAAA,OAAA,CAGGC,QAHH,EAGa;AAAA,MAAA,IAAA,iBAAA,CAAA;;MAChB,IAAIA,QAAJ,KAAIA,IAAAA,IAAAA,QAAJ,KAAIA,KAAAA,CAAAA,IAAAA,CAAAA,iBAAAA,GAAAA,QAAQ,CAAED,OAAd,MAAA,IAAA,IAAA,iBAAA,KAAA,KAAA,CAAA,IAAI,iBAAmBE,CAAAA,YAAvB,EAAqC;AACnCD,QAAAA,QAAQ,CAACE,OAAT,CAAiBC,OAAjB,CAAyBC,IAAzB,CACE,IAAIJ,QAAQ,CAACD,OAAT,CAAiBE,YAArB,CAAkC;AAChCI,UAAAA,GAAG,EAAE,IAD2B;AAEhCC,UAAAA,OAAO,EAAE,4BAFuB;AAGhCC,UAAAA,MAAM,EAAEX,aAAAA;AAHwB,SAAlC,CADF,CAAA,CAAA;AAOD,OARD,MAQO;AACLI,QAAAA,QAAQ,CAACE,OAAT,CAAiBC,OAAjB,CAAyBC,IAAzB;AAEE,QAAA,IAAII,qBAAJ,CAAyB;AACvBH,UAAAA,GAAG,EAAE,IADkB;AAEvBC,UAAAA,OAAO,EAAE,4BAFc;AAGvBC,UAAAA,MAAM,EAAEX,aAAAA;AAHe,SAAzB,CAFF,CAAA,CAAA;AAQD,OAAA;AACF,KAAA;GAtBH,CAAA;AAwBD,CAAA;;AAED,SAASa,6BAAT,GAA0D;EACxD,IAAMZ,UAAU,GAAG,0CAAnB,CAAA;EAEA,OAAO;AACLC,IAAAA,IAAI,EAAED,UADD;IAGLE,OAHK,EAAA,SAAA,OAAA,CAGGC,QAHH,EAGa;AAAA,MAAA,IAAA,kBAAA,CAAA;;MAChB,IAAIA,QAAJ,KAAIA,IAAAA,IAAAA,QAAJ,KAAIA,KAAAA,CAAAA,IAAAA,CAAAA,kBAAAA,GAAAA,QAAQ,CAAED,OAAd,MAAA,IAAA,IAAA,kBAAA,KAAA,KAAA,CAAA,IAAI,kBAAmBE,CAAAA,YAAvB,EAAqC;AACnCD,QAAAA,QAAQ,CAACE,OAAT,CAAiBC,OAAjB,CAAyBC,IAAzB,CACE,IAAIJ,QAAQ,CAACD,OAAT,CAAiBE,YAArB,CAAkC;AAChCI,UAAAA,GAAG,EAAE,IAD2B;AAEhCC,UAAAA,OAAO,EAAE,4BAFuB;AAGhCC,UAAAA,MAAM,EAAE,SAAA,MAAA,GAAA;AAAA,YAAA,OAAMG,mCAAiB,CAACC,OAAM,EAAP,CAAvB,CAAA;AAAA,WAAA;AAHwB,SAAlC,CADF,CAAA,CAAA;AAOD,OARD,MAQO;AACLX,QAAAA,QAAQ,CAACE,OAAT,CAAiBC,OAAjB,CAAyBC,IAAzB;AAEE,QAAA,IAAII,qBAAJ,CAAyB;AACvBH,UAAAA,GAAG,EAAE,IADkB;AAEvBC,UAAAA,OAAO,EAAE,4BAFc;AAGvBC,UAAAA,MAAM,EAAE,SAAA,MAAA,GAAA;AAAA,YAAA,OAAMG,mCAAiB,CAACC,OAAM,EAAP,CAAvB,CAAA;AAAA,WAAA;AAHe,SAAzB,CAFF,CAAA,CAAA;AAQD,OAAA;AACF,KAAA;GAtBH,CAAA;AAwBD,CAAA;;AAED,IAAMC,cAAc,GAAGC,uCAAqB,CAAC;AAC3CC,EAAAA,sBAAsB,EAAEnB,6BADmB;AAE3CoB,EAAAA,sBAAsB,EAAEN,6BAAAA;AAFmB,CAAD,CAA5C;;AAMaO,IAAAA,mBAA8C,GAAGJ,cAAc,CAACb;;;;;;;;"}
|
package/dist/esm/index.mjs
CHANGED
|
@@ -30,7 +30,6 @@ function webpackReleaseInjectionPlugin(injectionCode) {
|
|
|
30
30
|
|
|
31
31
|
function webpackDebugIdInjectionPlugin() {
|
|
32
32
|
var pluginName = "sentry-webpack-debug-id-injection-plugin";
|
|
33
|
-
var debugIdSnippet = getDebugIdSnippet(v4());
|
|
34
33
|
return {
|
|
35
34
|
name: pluginName,
|
|
36
35
|
webpack: function webpack(compiler) {
|
|
@@ -40,14 +39,18 @@ function webpackDebugIdInjectionPlugin() {
|
|
|
40
39
|
compiler.options.plugins.push(new compiler.webpack.BannerPlugin({
|
|
41
40
|
raw: true,
|
|
42
41
|
include: /\.(js|ts|jsx|tsx|mjs|cjs)$/,
|
|
43
|
-
banner:
|
|
42
|
+
banner: function banner() {
|
|
43
|
+
return getDebugIdSnippet(v4());
|
|
44
|
+
}
|
|
44
45
|
}));
|
|
45
46
|
} else {
|
|
46
47
|
compiler.options.plugins.push( // eslint-disable-next-line @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-call
|
|
47
48
|
new BannerPlugin({
|
|
48
49
|
raw: true,
|
|
49
50
|
include: /\.(js|ts|jsx|tsx|mjs|cjs)$/,
|
|
50
|
-
banner:
|
|
51
|
+
banner: function banner() {
|
|
52
|
+
return getDebugIdSnippet(v4());
|
|
53
|
+
}
|
|
51
54
|
}));
|
|
52
55
|
}
|
|
53
56
|
}
|
package/dist/esm/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":["../../src/index.ts"],"sourcesContent":["import { getDebugIdSnippet, Options, sentryUnpluginFactory } from \"@sentry/bundler-plugin-core\";\nimport { UnpluginOptions } from \"unplugin\";\nimport { v4 as uuidv4 } from \"uuid\";\n\n// eslint-disable-next-line @typescript-eslint/ban-ts-comment\n// @ts-ignore No typedefs for webpack 4\nimport { BannerPlugin as Webpack4BannerPlugin } from \"webpack-4\";\n\nfunction webpackReleaseInjectionPlugin(injectionCode: string): UnpluginOptions {\n const pluginName = \"sentry-webpack-release-injection-plugin\";\n\n return {\n name: pluginName,\n\n webpack(compiler) {\n if (compiler?.webpack?.BannerPlugin) {\n compiler.options.plugins.push(\n new compiler.webpack.BannerPlugin({\n raw: true,\n include: /\\.(js|ts|jsx|tsx|mjs|cjs)$/,\n banner: injectionCode,\n })\n );\n } else {\n compiler.options.plugins.push(\n // eslint-disable-next-line @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-call\n new Webpack4BannerPlugin({\n raw: true,\n include: /\\.(js|ts|jsx|tsx|mjs|cjs)$/,\n banner: injectionCode,\n })\n );\n }\n },\n };\n}\n\nfunction webpackDebugIdInjectionPlugin(): UnpluginOptions {\n const pluginName = \"sentry-webpack-debug-id-injection-plugin\";\n
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":["../../src/index.ts"],"sourcesContent":["import { getDebugIdSnippet, Options, sentryUnpluginFactory } from \"@sentry/bundler-plugin-core\";\nimport { UnpluginOptions } from \"unplugin\";\nimport { v4 as uuidv4 } from \"uuid\";\n\n// eslint-disable-next-line @typescript-eslint/ban-ts-comment\n// @ts-ignore No typedefs for webpack 4\nimport { BannerPlugin as Webpack4BannerPlugin } from \"webpack-4\";\n\nfunction webpackReleaseInjectionPlugin(injectionCode: string): UnpluginOptions {\n const pluginName = \"sentry-webpack-release-injection-plugin\";\n\n return {\n name: pluginName,\n\n webpack(compiler) {\n if (compiler?.webpack?.BannerPlugin) {\n compiler.options.plugins.push(\n new compiler.webpack.BannerPlugin({\n raw: true,\n include: /\\.(js|ts|jsx|tsx|mjs|cjs)$/,\n banner: injectionCode,\n })\n );\n } else {\n compiler.options.plugins.push(\n // eslint-disable-next-line @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-call\n new Webpack4BannerPlugin({\n raw: true,\n include: /\\.(js|ts|jsx|tsx|mjs|cjs)$/,\n banner: injectionCode,\n })\n );\n }\n },\n };\n}\n\nfunction webpackDebugIdInjectionPlugin(): UnpluginOptions {\n const pluginName = \"sentry-webpack-debug-id-injection-plugin\";\n\n return {\n name: pluginName,\n\n webpack(compiler) {\n if (compiler?.webpack?.BannerPlugin) {\n compiler.options.plugins.push(\n new compiler.webpack.BannerPlugin({\n raw: true,\n include: /\\.(js|ts|jsx|tsx|mjs|cjs)$/,\n banner: () => getDebugIdSnippet(uuidv4()),\n })\n );\n } else {\n compiler.options.plugins.push(\n // eslint-disable-next-line @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-call\n new Webpack4BannerPlugin({\n raw: true,\n include: /\\.(js|ts|jsx|tsx|mjs|cjs)$/,\n banner: () => getDebugIdSnippet(uuidv4()),\n })\n );\n }\n },\n };\n}\n\nconst sentryUnplugin = sentryUnpluginFactory({\n releaseInjectionPlugin: webpackReleaseInjectionPlugin,\n debugIdInjectionPlugin: webpackDebugIdInjectionPlugin,\n});\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport const sentryWebpackPlugin: (options: Options) => any = sentryUnplugin.webpack;\n\nexport { sentryCliBinaryExists } from \"@sentry/bundler-plugin-core\";\nexport type { Options as SentryWebpackPluginOptions } from \"@sentry/bundler-plugin-core\";\n"],"names":["webpackReleaseInjectionPlugin","injectionCode","pluginName","name","webpack","compiler","BannerPlugin","options","plugins","push","raw","include","banner","Webpack4BannerPlugin","webpackDebugIdInjectionPlugin","getDebugIdSnippet","uuidv4","sentryUnplugin","sentryUnpluginFactory","releaseInjectionPlugin","debugIdInjectionPlugin","sentryWebpackPlugin"],"mappings":";;;;;AAQA,SAASA,6BAAT,CAAuCC,aAAvC,EAA+E;EAC7E,IAAMC,UAAU,GAAG,yCAAnB,CAAA;EAEA,OAAO;AACLC,IAAAA,IAAI,EAAED,UADD;IAGLE,OAHK,EAAA,SAAA,OAAA,CAGGC,QAHH,EAGa;AAAA,MAAA,IAAA,iBAAA,CAAA;;MAChB,IAAIA,QAAJ,KAAIA,IAAAA,IAAAA,QAAJ,KAAIA,KAAAA,CAAAA,IAAAA,CAAAA,iBAAAA,GAAAA,QAAQ,CAAED,OAAd,MAAA,IAAA,IAAA,iBAAA,KAAA,KAAA,CAAA,IAAI,iBAAmBE,CAAAA,YAAvB,EAAqC;AACnCD,QAAAA,QAAQ,CAACE,OAAT,CAAiBC,OAAjB,CAAyBC,IAAzB,CACE,IAAIJ,QAAQ,CAACD,OAAT,CAAiBE,YAArB,CAAkC;AAChCI,UAAAA,GAAG,EAAE,IAD2B;AAEhCC,UAAAA,OAAO,EAAE,4BAFuB;AAGhCC,UAAAA,MAAM,EAAEX,aAAAA;AAHwB,SAAlC,CADF,CAAA,CAAA;AAOD,OARD,MAQO;AACLI,QAAAA,QAAQ,CAACE,OAAT,CAAiBC,OAAjB,CAAyBC,IAAzB;AAEE,QAAA,IAAII,YAAJ,CAAyB;AACvBH,UAAAA,GAAG,EAAE,IADkB;AAEvBC,UAAAA,OAAO,EAAE,4BAFc;AAGvBC,UAAAA,MAAM,EAAEX,aAAAA;AAHe,SAAzB,CAFF,CAAA,CAAA;AAQD,OAAA;AACF,KAAA;GAtBH,CAAA;AAwBD,CAAA;;AAED,SAASa,6BAAT,GAA0D;EACxD,IAAMZ,UAAU,GAAG,0CAAnB,CAAA;EAEA,OAAO;AACLC,IAAAA,IAAI,EAAED,UADD;IAGLE,OAHK,EAAA,SAAA,OAAA,CAGGC,QAHH,EAGa;AAAA,MAAA,IAAA,kBAAA,CAAA;;MAChB,IAAIA,QAAJ,KAAIA,IAAAA,IAAAA,QAAJ,KAAIA,KAAAA,CAAAA,IAAAA,CAAAA,kBAAAA,GAAAA,QAAQ,CAAED,OAAd,MAAA,IAAA,IAAA,kBAAA,KAAA,KAAA,CAAA,IAAI,kBAAmBE,CAAAA,YAAvB,EAAqC;AACnCD,QAAAA,QAAQ,CAACE,OAAT,CAAiBC,OAAjB,CAAyBC,IAAzB,CACE,IAAIJ,QAAQ,CAACD,OAAT,CAAiBE,YAArB,CAAkC;AAChCI,UAAAA,GAAG,EAAE,IAD2B;AAEhCC,UAAAA,OAAO,EAAE,4BAFuB;AAGhCC,UAAAA,MAAM,EAAE,SAAA,MAAA,GAAA;AAAA,YAAA,OAAMG,iBAAiB,CAACC,EAAM,EAAP,CAAvB,CAAA;AAAA,WAAA;AAHwB,SAAlC,CADF,CAAA,CAAA;AAOD,OARD,MAQO;AACLX,QAAAA,QAAQ,CAACE,OAAT,CAAiBC,OAAjB,CAAyBC,IAAzB;AAEE,QAAA,IAAII,YAAJ,CAAyB;AACvBH,UAAAA,GAAG,EAAE,IADkB;AAEvBC,UAAAA,OAAO,EAAE,4BAFc;AAGvBC,UAAAA,MAAM,EAAE,SAAA,MAAA,GAAA;AAAA,YAAA,OAAMG,iBAAiB,CAACC,EAAM,EAAP,CAAvB,CAAA;AAAA,WAAA;AAHe,SAAzB,CAFF,CAAA,CAAA;AAQD,OAAA;AACF,KAAA;GAtBH,CAAA;AAwBD,CAAA;;AAED,IAAMC,cAAc,GAAGC,qBAAqB,CAAC;AAC3CC,EAAAA,sBAAsB,EAAEnB,6BADmB;AAE3CoB,EAAAA,sBAAsB,EAAEN,6BAAAA;AAFmB,CAAD,CAA5C;;AAMaO,IAAAA,mBAA8C,GAAGJ,cAAc,CAACb;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sentry/webpack-plugin",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.6",
|
|
4
4
|
"description": "Official Sentry Webpack plugin",
|
|
5
5
|
"repository": "git://github.com/getsentry/sentry-javascript-bundler-plugins.git",
|
|
6
6
|
"homepage": "https://github.com/getsentry/sentry-javascript-bundler-plugins/tree/main/packages/webpack-plugin",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"lint": "eslint ./src ./test"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@sentry/bundler-plugin-core": "2.0.0-alpha.
|
|
50
|
+
"@sentry/bundler-plugin-core": "2.0.0-alpha.6",
|
|
51
51
|
"unplugin": "1.0.1",
|
|
52
52
|
"uuid": "^9.0.0",
|
|
53
53
|
"webpack-4": "npm:webpack@^4"
|
|
@@ -58,8 +58,8 @@
|
|
|
58
58
|
"@babel/preset-typescript": "7.17.12",
|
|
59
59
|
"@rollup/plugin-babel": "5.3.1",
|
|
60
60
|
"@rollup/plugin-commonjs": "22.0.1",
|
|
61
|
-
"@sentry-internal/eslint-config": "2.0.0-alpha.
|
|
62
|
-
"@sentry-internal/sentry-bundler-plugin-tsconfig": "2.0.0-alpha.
|
|
61
|
+
"@sentry-internal/eslint-config": "2.0.0-alpha.6",
|
|
62
|
+
"@sentry-internal/sentry-bundler-plugin-tsconfig": "2.0.0-alpha.6",
|
|
63
63
|
"@swc/core": "^1.2.205",
|
|
64
64
|
"@swc/jest": "^0.2.21",
|
|
65
65
|
"@types/jest": "^28.1.3",
|