Skip to content

Commit

Permalink
v1.2.7 (#12)
Browse files Browse the repository at this point in the history
* λ””νŽœλ˜μ‹œ μ—…λ°μ΄νŠΈ

Kocal/vue-web-extension@cd68341

* v1.2.7
  • Loading branch information
wormwlrm committed Jan 1, 2020
1 parent ae8b755 commit 6fd71c2
Show file tree
Hide file tree
Showing 4 changed files with 151 additions and 40 deletions.
181 changes: 145 additions & 36 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"vue-template-compiler": "^2.6.10",
"web-ext-types": "^2.1.0",
"webpack": "^4.20.2",
"webpack-chrome-extension-reloader": "^0.8.3",
"webpack-extension-reloader": "^1.1.0",
"webpack-cli": "^3.1.2"
}
}
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "wormwlrm",
"name": "전역일 계산기",
"description": "μ‹¬ν”Œν•œ λ””μžμΈμ˜ μœ„μ ―ν˜• 전역일 κ³„μ‚°κΈ°μž…λ‹ˆλ‹€.",
"version": "1.2.6",
"version": "1.2.7",
"manifest_version": 2,
"icons": {
"16": "icons/icon16.png",
Expand Down
6 changes: 4 additions & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const webpack = require('webpack');
const ejs = require('ejs');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const ChromeExtensionReloader = require('webpack-chrome-extension-reloader');
const ExtensionReloader = require('webpack-extension-reloader');
const { VueLoaderPlugin } = require('vue-loader');
const { version } = require('./src/manifest.json');

Expand Down Expand Up @@ -107,7 +107,9 @@ if (config.mode === 'production') {

if (process.env.HMR === 'true') {
config.plugins = (config.plugins || []).concat([
new ChromeExtensionReloader()
new ExtensionReloader({
manifest: __dirname + '/src/manifest.json'
})
]);
}

Expand Down

0 comments on commit 6fd71c2

Please sign in to comment.