From 61b2874693dd1115d68f243f4ba770c3efb41a96 Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Wed, 19 Apr 2017 21:59:52 +0700 Subject: [PATCH] Move Chrome extension items into public/build --- package.json | 2 +- {src => public}/content.js | 0 manifest.json => public/manifest.json | 4 ++-- 3 files changed, 3 insertions(+), 3 deletions(-) rename {src => public}/content.js (100%) rename manifest.json => public/manifest.json (84%) diff --git a/package.json b/package.json index 3a15132..9b2390c 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "bugs": { "url": "https://github.com/lukechilds/syringe/issues" }, - "homepage": "/build", + "homepage": "/", "dependencies": { "react": "^15.4.2", "react-autosuggest": "^9.0.0", diff --git a/src/content.js b/public/content.js similarity index 100% rename from src/content.js rename to public/content.js diff --git a/manifest.json b/public/manifest.json similarity index 84% rename from manifest.json rename to public/manifest.json index 59c80af..2144e8b 100644 --- a/manifest.json +++ b/public/manifest.json @@ -5,7 +5,7 @@ "homepage_url": "https://github.com/lukechilds/syringe", "manifest_version": 2, "browser_action": { - "default_popup": "build/index.html" + "default_popup": "index.html" }, "content_scripts": [ { @@ -14,7 +14,7 @@ "" ], "js": [ - "src/content.js" + "content.js" ] } ]