From 52dd698101285da9ee21aa332f0778d34a11d63b Mon Sep 17 00:00:00 2001 From: Bryce Osterhaus Date: Tue, 2 May 2017 15:34:01 -0700 Subject: [PATCH] Move build & manifest.json into dist folder --- shells/chrome/{ => dist}/manifest.json | 0 shells/chrome/webpack.config.js | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename shells/chrome/{ => dist}/manifest.json (100%) diff --git a/shells/chrome/manifest.json b/shells/chrome/dist/manifest.json similarity index 100% rename from shells/chrome/manifest.json rename to shells/chrome/dist/manifest.json diff --git a/shells/chrome/webpack.config.js b/shells/chrome/webpack.config.js index 3d63545..55b54f3 100644 --- a/shells/chrome/webpack.config.js +++ b/shells/chrome/webpack.config.js @@ -27,6 +27,6 @@ module.exports = { }, output: { filename: '[name].js', - path: __dirname + '/build' + path: __dirname + '/dist/build' } };