From 077780c993c67434a4c2817477806d92be998f01 Mon Sep 17 00:00:00 2001 From: ppoffice Date: Fri, 10 Apr 2020 15:44:13 -0400 Subject: [PATCH] fix(schema): move search schemas to npm dep --- include/schema/search/.gitkeep | 0 include/schema/search/algolia.json | 15 --------------- include/schema/search/insight.json | 15 --------------- package.json | 4 ++-- 4 files changed, 2 insertions(+), 32 deletions(-) create mode 100644 include/schema/search/.gitkeep delete mode 100644 include/schema/search/algolia.json delete mode 100644 include/schema/search/insight.json diff --git a/include/schema/search/.gitkeep b/include/schema/search/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/include/schema/search/algolia.json b/include/schema/search/algolia.json deleted file mode 100644 index 48e4321de..000000000 --- a/include/schema/search/algolia.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "/search/algolia.json", - "description": "Enable Algolia search\nhttps://www.algolia.com", - "type": "object", - "properties": { - "type": { - "type": "string", - "const": "algolia" - } - }, - "required": [ - "type" - ] -} \ No newline at end of file diff --git a/include/schema/search/insight.json b/include/schema/search/insight.json deleted file mode 100644 index 45ebf7be0..000000000 --- a/include/schema/search/insight.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "/search/insight.json", - "description": "Enable Insight search\nhttps://ppoffice.github.io/hexo-theme-icarus/Plugins/Search/insight-search-plugin/", - "type": "object", - "properties": { - "type": { - "type": "string", - "const": "insight" - } - }, - "required": [ - "type" - ] -} \ No newline at end of file diff --git a/package.json b/package.json index d34c2af70..e51acd53b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hexo-theme-icarus", - "version": "3.0.0", + "version": "3.0.1", "private": true, "engines": { "node": ">=8.3.0" @@ -22,7 +22,7 @@ "bulma-stylus": "0.8.0", "deepmerge": "^4.2.2", "hexo": "^4.2.0", - "hexo-component-inferno": "^0.2.0", + "hexo-component-inferno": "^0.2.3", "hexo-log": "^1.0.0", "hexo-pagination": "^1.0.0", "hexo-renderer-inferno": "^0.1.3",