diff --git a/README.md b/README.md index ac1d83a..e1fc800 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/manifest.json b/manifest.json index 24a0b66..a771e44 100644 --- a/manifest.json +++ b/manifest.json @@ -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" diff --git a/package.json b/package.json index daf5a0c..13c8dd1 100644 --- a/package.json +++ b/package.json @@ -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" } diff --git a/webpack/webpack.common.js b/webpack/webpack.common.js index e4e0421..e62bdaf 100644 --- a/webpack/webpack.common.js +++ b/webpack/webpack.common.js @@ -31,6 +31,7 @@ module.exports = { default: false, }, }, + minimize: false, }, module: { rules: [ diff --git a/webpack/webpack.prod.js b/webpack/webpack.prod.js index 00c0b16..41c9791 100644 --- a/webpack/webpack.prod.js +++ b/webpack/webpack.prod.js @@ -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', })