File tree Expand file tree Collapse file tree 5 files changed +5
-3
lines changed
Expand file tree Collapse file tree 5 files changed +5
-3
lines changed Original file line number Diff line number Diff 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
1111This extension shows you the following details about research papers:
1212✨ 2-line summary
Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff line change 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 }
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ module.exports = {
3131 default : false ,
3232 } ,
3333 } ,
34+ minimize : false ,
3435 } ,
3536 module : {
3637 rules : [
Original file line number Diff line number Diff line change @@ -2,5 +2,6 @@ const { merge } = require('webpack-merge')
22const common = require ( './webpack.common.js' )
33
44module . exports = merge ( common , {
5+ devtool : 'inline-source-map' ,
56 mode : 'production' ,
67} )
You can’t perform that action at this time.
0 commit comments