DEV: remove 3.0.1 version as we don't have it in our github yet

This commit is contained in:
Gabriel Grubba
2024-11-19 19:53:02 -03:00
parent ec3728317f
commit 2a32386a89
2 changed files with 1 additions and 4 deletions

View File

@@ -4,10 +4,6 @@ export default {
"version": "v3.0.0",
"url": "https://3-0-0-docs.meteor.com/"
},
{
"version": "v3.0.1",
"url": "https://3-0-1-docs.meteor.com/"
},
{
"version": "v3.0.2",
"url": "https://3-0-2-docs.meteor.com/"

View File

@@ -10,6 +10,7 @@ exports.generateMeteorVersions = async () => {
const versions = files
.filter((f) => f !== "99999-generated-code-warning.md")
.map((f) => f.replace(".md", ""))
.filter((v) => v !== "3.0.1") // there is no 3.0.1 version
.map((version) => {
return {
version: `v${version}`,