diff --git a/config/paths.js b/config/paths.js index f79b81c..0c94542 100644 --- a/config/paths.js +++ b/config/paths.js @@ -42,9 +42,9 @@ function getServedPath(appPackageJson) { module.exports = { dotenv: resolveApp(".env"), appBuild: resolveApp("build"), - appPublic: resolveApp("public"), - appHtml: resolveApp("public/index.html"), - appIndexJs: resolveApp("src/explorer/index.js"), + appPublic: resolveApp("src/plugins/artifact/editor/public"), + appHtml: resolveApp("src/plugins/artifact/editor/public/index.html"), + appIndexJs: resolveApp("src/plugins/artifact/editor/index.js"), appPackageJson: resolveApp("package.json"), appSrc: resolveApp("src"), yarnLockFile: resolveApp("yarn.lock"), diff --git a/src/explorer/App.js b/src/plugins/artifact/editor/App.js similarity index 100% rename from src/explorer/App.js rename to src/plugins/artifact/editor/App.js diff --git a/src/explorer/App.test.js b/src/plugins/artifact/editor/App.test.js similarity index 100% rename from src/explorer/App.test.js rename to src/plugins/artifact/editor/App.test.js diff --git a/src/explorer/index.css b/src/plugins/artifact/editor/index.css similarity index 100% rename from src/explorer/index.css rename to src/plugins/artifact/editor/index.css diff --git a/src/explorer/index.js b/src/plugins/artifact/editor/index.js similarity index 100% rename from src/explorer/index.js rename to src/plugins/artifact/editor/index.js diff --git a/public/index.html b/src/plugins/artifact/editor/public/index.html similarity index 100% rename from public/index.html rename to src/plugins/artifact/editor/public/index.html diff --git a/src/explorer/registerServiceWorker.js b/src/plugins/artifact/editor/registerServiceWorker.js similarity index 100% rename from src/explorer/registerServiceWorker.js rename to src/plugins/artifact/editor/registerServiceWorker.js