From 4951f267f95eb7727b7aac7fae90c91930727499 Mon Sep 17 00:00:00 2001 From: Harry Wolff Date: Fri, 29 Aug 2014 17:39:54 -0400 Subject: [PATCH] Remove shim files that were created to address #1873. refs #1873 - Removes all shim files. --- core/server.js | 14 -------------- core/server/api.js | 14 -------------- core/server/middleware.js | 14 -------------- 3 files changed, 42 deletions(-) delete mode 100644 core/server.js delete mode 100644 core/server/api.js delete mode 100644 core/server/middleware.js diff --git a/core/server.js b/core/server.js deleted file mode 100644 index 4ea9594166..0000000000 --- a/core/server.js +++ /dev/null @@ -1,14 +0,0 @@ -/* -This file is a shim to accomodate simple file system merge upgrade from 0.3.3 to 0.4. -During a file system merge upgrade from 0.3.3 to 0.4, the old version of this file will -persist unless this shim is in place. Problems arise when the stale 0.3.3 version of -this file exists as well as the new directory of files bearing the same name in 0.4. -Node's require defaults to loading the 0.3.3 version causing errors. This file replaces -the old 0.3.3 version. This allows all dependent modules to continue requiring their -dependencies the way they always have. See issue 1873 for more information. - -https://github.com/TryGhost/Ghost/issues/1873 -*/ -var server = require('./server/index.js'); - -module.exports = server; diff --git a/core/server/api.js b/core/server/api.js deleted file mode 100644 index 1e628ac007..0000000000 --- a/core/server/api.js +++ /dev/null @@ -1,14 +0,0 @@ -/* -This file is a shim to accomodate simple file system merge upgrade from 0.3.3 to 0.4. -During a file system merge upgrade from 0.3.3 to 0.4, the old version of this file will -persist unless this shim is in place. Problems arise when the stale 0.3.3 version of -this file exists as well as the new directory of files bearing the same name in 0.4. -Node's require defaults to loading the 0.3.3 version causing errors. This file replaces -the old 0.3.3 version. This allows all dependent modules to continue requiring their -dependencies the way they always have. See issue 1873 for more information. - -https://github.com/TryGhost/Ghost/issues/1873 -*/ -var api = require('./api/index.js'); - -module.exports = api; diff --git a/core/server/middleware.js b/core/server/middleware.js deleted file mode 100644 index 155e86cdf1..0000000000 --- a/core/server/middleware.js +++ /dev/null @@ -1,14 +0,0 @@ -/* -This file is a shim to accomodate simple file system merge upgrade from 0.3.3 to 0.4. -During a file system merge upgrade from 0.3.3 to 0.4, the old version of this file will -persist unless this shim is in place. Problems arise when the stale 0.3.3 version of -this file exists as well as the new directory of files bearing the same name in 0.4. -Node's require defaults to loading the 0.3.3 version causing errors. This file replaces -the old 0.3.3 version. This allows all dependent modules to continue requiring their -dependencies the way they always have. See issue 1873 for more information. - -https://github.com/TryGhost/Ghost/issues/1873 -*/ -var middleware = require('./middleware/index.js'); - -module.exports = middleware;