From 02bbcff2e53e6a1d5b3437a6cbf9ec02d4134404 Mon Sep 17 00:00:00 2001 From: EnixCoda Date: Thu, 8 Feb 2018 13:15:50 +0800 Subject: [PATCH] chore: update version number --- package.json | 2 +- src/manifest.json | 2 +- webpack.config.js | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index c4c6747..daf90e3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gitako", - "version": "0.1.3", + "version": "0.1.4", "description": "yet another extension for GitHub", "repository": "https://github.com/EnixCoda/Gitako", "author": "EnixCoda", diff --git a/src/manifest.json b/src/manifest.json index 791fd6f..62de41a 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Gitako", - "version": "0.1.3", + "version": "0.1.4", "author": "EnixCoda", "icons": { "128": "icons/Gitako-128x128.png" diff --git a/webpack.config.js b/webpack.config.js index 28021b7..c4be79e 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -69,11 +69,13 @@ module.exports = { test: /\.svg$/, resourceQuery: /inline/, loader: ['url-loader'], + include: [srcPath], }, { test: /\.svg$/, resourceQuery: /svgr/, loader: ['babel-loader', 'svgr/webpack'], + include: [srcPath], }, ], },