From 6fe31574c8dc3fc6650d175daea755ca75fdb5ea Mon Sep 17 00:00:00 2001 From: Ross Hill Date: Sun, 29 Sep 2024 22:16:33 -0400 Subject: [PATCH] Remove package versions and remove non-indexed page from sitemap --- client/package-lock.json | 4 --- client/package.json | 4 --- client/static/sitemap.xml | 64 +++++++++++++++++---------------------- mandelbrot/Cargo.toml | 1 - 4 files changed, 28 insertions(+), 45 deletions(-) diff --git a/client/package-lock.json b/client/package-lock.json index e3974d31..6ccdb82b 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -6,7 +6,6 @@ "packages": { "": { "name": "mandelbrot.site", - "version": "1.0.1", "license": "MIT", "dependencies": { "@supabase/supabase-js": "^2.45.2", @@ -41,9 +40,6 @@ "webpack": "^5.90.1", "webpack-cli": "^5.1.4", "webpack-dev-server": "^4.15.1" - }, - "engines": { - "node": ">=18.14.0" } }, "node_modules/@discoveryjs/json-ext": { diff --git a/client/package.json b/client/package.json index dc41f975..0277cb16 100644 --- a/client/package.json +++ b/client/package.json @@ -1,7 +1,6 @@ { "author": "Ross Hill ", "name": "mandelbrot.site", - "version": "1.0.1", "repository": "https://github.com/rosslh/mandelbrot.site", "license": "MIT", "scripts": { @@ -49,8 +48,5 @@ "leaflet": "1.7.1", "lodash": "^4.17.21", "threads": "^1.7.0" - }, - "engines": { - "node": ">=18.14.0" } } diff --git a/client/static/sitemap.xml b/client/static/sitemap.xml index 61e247ad..4e516c1a 100644 --- a/client/static/sitemap.xml +++ b/client/static/sitemap.xml @@ -1,39 +1,31 @@ - - - - https://mandelbrot.site/ - 1.00 - - - https://mandelbrot.site/how-mandelbrot-site-was-built - 0.80 - - - https://mandelbrot.site/what-is-mandelbrot-set - 0.80 - - - https://mandelbrot.site/history-of-mandelbrot-set - 0.80 - - - https://mandelbrot.site/who-was-benoit-mandelbrot - 0.80 - - - https://mandelbrot.site/why-mandelbrot-set-important - 0.80 - - - https://mandelbrot.site/privacy-policy - 0.60 - - - + xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" +> + + https://mandelbrot.site/ + 1.00 + + + https://mandelbrot.site/how-mandelbrot-site-was-built + 0.80 + + + https://mandelbrot.site/what-is-mandelbrot-set + 0.80 + + + https://mandelbrot.site/history-of-mandelbrot-set + 0.80 + + + https://mandelbrot.site/who-was-benoit-mandelbrot + 0.80 + + + https://mandelbrot.site/why-mandelbrot-set-important + 0.80 + diff --git a/mandelbrot/Cargo.toml b/mandelbrot/Cargo.toml index 83e9252c..8bca2f60 100644 --- a/mandelbrot/Cargo.toml +++ b/mandelbrot/Cargo.toml @@ -5,7 +5,6 @@ description = "Generates Mandelbrot set images" name = "mandelbrot" readme = "../README.md" repository = "https://github.com/rosslh/Mandelbrot.site" -version = "0.2.0" edition = "2018" [lib]