Skip to content

Commit a3b334e

Browse files
committed
stop minifying the bundles
1 parent 2084a0b commit a3b334e

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This is the source code of the papers.labml.ai Chrome extension.
66

77
## About
88

9-
🔎 View information about research papers linked from websites you visit.
9+
🔎 View information about research papers linked from websites you visit.
1010

1111
This extension shows you the following details about research papers:
1212
✨ 2-line summary

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"48": "assets/icon48.png",
77
"128": "assets/icon128.png"
88
},
9-
"version": "1.0.0",
9+
"version": "1.0.1",
1010
"description": "\uD83D\uDD0E View information about research papers linked from websites you visit.",
1111
"background": {
1212
"service_worker": "js/background.js"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"build": "webpack --config webpack/webpack.prod.js",
2525
"prepare": "husky install"
2626
},
27-
"version": "1.0.0",
27+
"version": "1.0.1",
2828
"lint-staged": {
2929
"**/*": "prettier --check"
3030
}

webpack/webpack.common.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ module.exports = {
3131
default: false,
3232
},
3333
},
34+
minimize: false,
3435
},
3536
module: {
3637
rules: [

webpack/webpack.prod.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@ const { merge } = require('webpack-merge')
22
const common = require('./webpack.common.js')
33

44
module.exports = merge(common, {
5+
devtool: 'inline-source-map',
56
mode: 'production',
67
})

0 commit comments

Comments
 (0)