From 8742556f311fad0ab4a336a959d3750b5e82f2a6 Mon Sep 17 00:00:00 2001 From: Swastik nath Date: Tue, 13 Aug 2019 00:02:41 +0530 Subject: [PATCH] add themes as dependencies + symlinks --- content/themes/attila | 1 + content/themes/london | 1 + content/themes/massively | 1 + content/themes/official-blog | 1 + package-lock.json | 28 ++++++++++++++++++++++------ package.json | 6 +++++- 6 files changed, 31 insertions(+), 7 deletions(-) create mode 120000 content/themes/attila create mode 120000 content/themes/london create mode 120000 content/themes/massively create mode 120000 content/themes/official-blog diff --git a/content/themes/attila b/content/themes/attila new file mode 120000 index 000000000..66fe01b9a --- /dev/null +++ b/content/themes/attila @@ -0,0 +1 @@ +../../node_modules/attila/ \ No newline at end of file diff --git a/content/themes/london b/content/themes/london new file mode 120000 index 000000000..1e1579459 --- /dev/null +++ b/content/themes/london @@ -0,0 +1 @@ +../../node_modules/london/ \ No newline at end of file diff --git a/content/themes/massively b/content/themes/massively new file mode 120000 index 000000000..bb12c6b35 --- /dev/null +++ b/content/themes/massively @@ -0,0 +1 @@ +../../node_modules/massively/ \ No newline at end of file diff --git a/content/themes/official-blog b/content/themes/official-blog new file mode 120000 index 000000000..5a4fe97b7 --- /dev/null +++ b/content/themes/official-blog @@ -0,0 +1 @@ +../../node_modules/blog/ \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 1d3a850a2..f1ff413d4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -148,9 +148,9 @@ } }, "@tryghost/kg-clean-basic-html": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@tryghost/kg-clean-basic-html/-/kg-clean-basic-html-0.1.1.tgz", - "integrity": "sha512-pHszGBQMo6r9YTg9VTDJsn0+i+rRNTs09dAMI8ZbD11AP0ten5XJxIqLQuDJJwIrchZ91J2rl+LMgnQo1yIyNw==", + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@tryghost/kg-clean-basic-html/-/kg-clean-basic-html-0.1.2.tgz", + "integrity": "sha512-wLuYmqVrm9pjfWqiURVAdx/nWoTVzbs8zBRoaE0Y29+F3wFeutp88MnZlfE5Ze2tJ2RRzMCWXQLhbZzFkYzTrg==", "optional": true }, "@tryghost/kg-parser-plugins": { @@ -711,6 +711,10 @@ "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" }, + "attila": { + "version": "github:zutrinken/attila#227bffca79395e8a0b93f5d12d1d3d90146ca665", + "from": "github:zutrinken/attila#1.13.0" + }, "aws-sdk": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.0.5.tgz", @@ -2943,9 +2947,9 @@ }, "dependencies": { "aws-sdk": { - "version": "2.507.0", - "resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.507.0.tgz", - "integrity": "sha512-sOtaZONTfUx1jh9HzrWMLwoA2cZK2Xn2RAmGV4Y11NM2qhMePOQ501dhAq/ygKMZRffjw23b8mT1rAaDGTn05g==", + "version": "2.508.0", + "resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.508.0.tgz", + "integrity": "sha512-VXMxsuwK31U+N259562VPiwQblwRQFQoVnv0d4Gp4Ji+JimCvV6qF73zobZy7cQK5ZPAB25BK4JVMdTYkpi+vA==", "requires": { "buffer": "4.9.1", "events": "1.1.1", @@ -4342,6 +4346,10 @@ "resolved": "https://registry.npmjs.org/lodash.union/-/lodash.union-4.6.0.tgz", "integrity": "sha1-SLtQiECfFvGCFmZkHETdGqrjzYg=" }, + "london": { + "version": "github:tryghost/london#442e8df01aabcc6944e896df40f461b1c46452bb", + "from": "github:tryghost/london" + }, "long": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", @@ -4489,6 +4497,10 @@ "resolved": "https://registry.npmjs.org/markdown-it-mark/-/markdown-it-mark-2.0.0.tgz", "integrity": "sha1-RqGqlHEFrtgYiXjgoBYXnkBPQsc=" }, + "massively": { + "version": "github:tryghost/massively#2b7fe131a5b3848b2a8a8367b8b6fa5109cac969", + "from": "github:tryghost/massively" + }, "md5": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/md5/-/md5-2.2.1.tgz", @@ -8366,6 +8378,10 @@ "promise-wtf": "^1.2.4" } }, + "official-blog": { + "version": "github:tryghost/blog#baab4555566e284e3705a550b352568585903056", + "from": "github:tryghost/blog" + }, "on-finished": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", diff --git a/package.json b/package.json index 336da0074..a35000e81 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,11 @@ "ghost": "2.27.0", "ghost-storage-adapter-s3": "^2.8.0", "ghost-storage-cloudinary": "^1.1.4", - "mysql": "^2.17.1" + "mysql": "^2.17.1", + "attila": "github:zutrinken/attila#1.13.0", + "london": "github:tryghost/london", + "massively": "github:tryghost/massively", + "official-blog": "github:tryghost/blog" }, "engines": { "node": "10.X"