SHA256
1
0
forked from pool/bitwarden
bitwarden/no-sourcemaps.patch
Bruno Pitrus c56016a790 Accepting request 1121686 from home:dziobian:gulgul-ultron:19
- New upstream release 2023.10.0
  * View and edit login items with passkeys saved to them
  * Add import functionality
  * Add direct import for LastPass
  * Add support for self-hosting email alias generators
  * Bug fix for Duo hardware keys

OBS-URL: https://build.opensuse.org/request/show/1121686
OBS-URL: https://build.opensuse.org/package/show/devel:languages:nodejs/bitwarden?expand=0&rev=34
2023-11-01 19:44:56 +00:00

42 lines
1.4 KiB
Diff

--- clients/tsconfig.json.old 2023-04-26 13:30:57.000000000 +0200
+++ clients/tsconfig.json 2023-04-26 20:15:39.879489082 +0200
@@ -6,7 +6,7 @@
"target": "ES2016",
"module": "ES2020",
"lib": ["es5", "es6", "es7", "dom"],
- "sourceMap": true,
+ "sourceMap": false,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
--- clients/apps/desktop/webpack.renderer.js.old 2023-04-26 13:30:57.000000000 +0200
+++ clients/apps/desktop/webpack.renderer.js 2023-04-26 20:17:42.900973173 +0200
@@ -61,7 +61,7 @@
const renderer = {
mode: NODE_ENV,
- devtool: "source-map",
+ devtool: false,
// TODO: Replace this with web.
// target: "web",
target: "electron-renderer",
@@ -138,7 +138,7 @@
new AngularWebpackPlugin({
tsConfigPath: "tsconfig.renderer.json",
entryModule: "src/app/app.module#AppModule",
- sourceMap: true,
+ sourceMap: false,
}),
// ref: https://github.com/angular/angular/issues/20357
new webpack.ContextReplacementPlugin(
@@ -150,9 +150,6 @@
filename: "index.html",
chunks: ["app/vendor", "app/main"],
}),
- new webpack.SourceMapDevToolPlugin({
- include: ["app/main.js"],
- }),
new MiniCssExtractPlugin({
filename: "[name].[contenthash].css",
chunkFilename: "[id].[contenthash].css",