Skip to content

Commit

Permalink
stop minifying the bundles
Browse files Browse the repository at this point in the history
  • Loading branch information
nmasnadithya committed Jan 15, 2022
1 parent 2084a0b commit a3b334e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This is the source code of the papers.labml.ai Chrome extension.

## About

🔎 View information about research papers linked from websites you visit.
🔎 View information about research papers linked from websites you visit.

This extension shows you the following details about research papers:
✨ 2-line summary
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"48": "assets/icon48.png",
"128": "assets/icon128.png"
},
"version": "1.0.0",
"version": "1.0.1",
"description": "\uD83D\uDD0E View information about research papers linked from websites you visit.",
"background": {
"service_worker": "js/background.js"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"build": "webpack --config webpack/webpack.prod.js",
"prepare": "husky install"
},
"version": "1.0.0",
"version": "1.0.1",
"lint-staged": {
"**/*": "prettier --check"
}
Expand Down
1 change: 1 addition & 0 deletions webpack/webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ module.exports = {
default: false,
},
},
minimize: false,
},
module: {
rules: [
Expand Down
1 change: 1 addition & 0 deletions webpack/webpack.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ const { merge } = require('webpack-merge')
const common = require('./webpack.common.js')

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

0 comments on commit a3b334e

Please sign in to comment.