From 2ae1afe1b2efc3b22191df2fa0d459acb44f3c1f Mon Sep 17 00:00:00 2001 From: Hannah Wolfe Date: Tue, 19 Oct 2021 12:33:46 +0100 Subject: [PATCH] Finished moving public to frontend MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit refs: https://github.com/TryGhost/Ghost/commit/ae33c897075750c80630fd08d4713b04067eb8bb - I forgot to do all the meta tasks to cleanup the move of public 🙈 --- .eslintignore | 2 +- .gitignore | 2 +- Gruntfile.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.eslintignore b/.eslintignore index b3ddb93817..6b3e39198a 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,2 +1,2 @@ -core/server/public/**/*.js +core/frontend/public/**/*.js core/server/lib/members/static/auth/**/*.js diff --git a/.gitignore b/.gitignore index a487fdcf10..a58119c29a 100644 --- a/.gitignore +++ b/.gitignore @@ -123,7 +123,7 @@ test/coverage # Built asset files /core/built /core/server/web/admin/views/*.html -/core/server/public/ghost.min.css +/core/frontend/public/ghost.min.css # Caddyfile - for local development with ssl + caddy Caddyfile diff --git a/Gruntfile.js b/Gruntfile.js index 548e2e426a..864f5394ac 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -219,7 +219,7 @@ module.exports = function (grunt) { ] }, files: { - 'core/server/public/ghost.min.css': 'core/server/public/ghost.css' + 'core/server/frontend/ghost.min.css': 'core/frontend/public/ghost.css' } } },