From 15569888075105b8545606825e99ca199e000baf Mon Sep 17 00:00:00 2001 From: Tony Atkins Date: Mon, 29 Apr 2024 12:16:57 +0200 Subject: [PATCH 1/2] GH-265: Restored 'octicons' on heading hover. --- eleventy.config.js | 1 + package-lock.json | 11 +++++++++++ package.json | 1 + src/_includes/layouts/base.njk | 1 + 4 files changed, 14 insertions(+) diff --git a/eleventy.config.js b/eleventy.config.js index 80c0ae6d..83d92037 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -48,6 +48,7 @@ module.exports = function (eleventyConfig) { "node_modules/infusion/src": "lib/infusion/src", "node_modules/foundation-sites/css": "lib/foundation", "node_modules/lunr": "lib/lunr", + "node_modules/octicons/octicons": "lib/octicons", "node_modules/fluid-express/src/js/lib": "lib/fluid-express", "node_modules/fluid-binder/src/js": "lib/fluid-binder", "node_modules/fluid-location-bar-relay/src/js": "lib/fluid-location-bar-relay", diff --git a/package-lock.json b/package-lock.json index edaf1fbe..f1ef878b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -19,6 +19,7 @@ "lunr": "2.3.9", "markdown-it": "13.0.1", "markdown-it-anchor": "8.6.7", + "octicons": "^3.1.0", "rimraf": "5.0.1", "string": "3.3.3" }, @@ -6615,6 +6616,11 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/octicons": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/octicons/-/octicons-3.1.0.tgz", + "integrity": "sha512-xrFFjI6qp8s4qKweAVXvh+psDKGmjiTGBeGXT4jcFXTJ/NCctePZgVTQaJqAik9rB57W50s14FJUA7/8AjN76A==" + }, "node_modules/on-finished": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", @@ -14568,6 +14574,11 @@ "object-keys": "^1.1.1" } }, + "octicons": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/octicons/-/octicons-3.1.0.tgz", + "integrity": "sha512-xrFFjI6qp8s4qKweAVXvh+psDKGmjiTGBeGXT4jcFXTJ/NCctePZgVTQaJqAik9rB57W50s14FJUA7/8AjN76A==" + }, "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 f8f3411b..ef96b986 100644 --- a/package.json +++ b/package.json @@ -25,6 +25,7 @@ "lunr": "2.3.9", "markdown-it": "13.0.1", "markdown-it-anchor": "8.6.7", + "octicons": "^3.1.0", "rimraf": "5.0.1", "string": "3.3.3" }, diff --git a/src/_includes/layouts/base.njk b/src/_includes/layouts/base.njk index 22ba44fa..4673830b 100644 --- a/src/_includes/layouts/base.njk +++ b/src/_includes/layouts/base.njk @@ -12,6 +12,7 @@ + From 7fe4ccd708657463a1bed7dd9e8ee96723c42f3b Mon Sep 17 00:00:00 2001 From: Tony Atkins Date: Mon, 29 Apr 2024 12:31:49 +0200 Subject: [PATCH 2/2] GH-263: Removed 'old' search dependencies and code now that pagefind is in use. --- eleventy.config.js | 4 ---- package-lock.json | 2 +- package.json | 2 +- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/eleventy.config.js b/eleventy.config.js index 83d92037..9d2b19e2 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -47,11 +47,7 @@ module.exports = function (eleventyConfig) { "node_modules/infusion/dist": "lib/infusion/dist", "node_modules/infusion/src": "lib/infusion/src", "node_modules/foundation-sites/css": "lib/foundation", - "node_modules/lunr": "lib/lunr", "node_modules/octicons/octicons": "lib/octicons", - "node_modules/fluid-express/src/js/lib": "lib/fluid-express", - "node_modules/fluid-binder/src/js": "lib/fluid-binder", - "node_modules/fluid-location-bar-relay/src/js": "lib/fluid-location-bar-relay", "src/static/css": "css", "src/static/fonts": "fonts", "src/static/images": "images", diff --git a/package-lock.json b/package-lock.json index f1ef878b..508cdf3b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -19,7 +19,7 @@ "lunr": "2.3.9", "markdown-it": "13.0.1", "markdown-it-anchor": "8.6.7", - "octicons": "^3.1.0", + "octicons": "3.1.0", "rimraf": "5.0.1", "string": "3.3.3" }, diff --git a/package.json b/package.json index ef96b986..0e0d3c6f 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "lunr": "2.3.9", "markdown-it": "13.0.1", "markdown-it-anchor": "8.6.7", - "octicons": "^3.1.0", + "octicons": "3.1.0", "rimraf": "5.0.1", "string": "3.3.3" },