diff --git a/package.json b/package.json index da9fa6f..3365c2c 100644 --- a/package.json +++ b/package.json @@ -8,12 +8,12 @@ "build": "astro build", "preview": "astro preview", "astro": "astro", + "core": "deno run --allow-all utils/core.js", "contribs": "deno run --allow-all utils/contributors.js", - "events": "deno run --allow-all utils/events.js", "articles": "deno run --allow-all utils/articles.js", "talks": "deno run --allow-all utils/talks.js", "explorer": "deno run --allow-all utils/explorer.js", - "all": "npm run contribs && npm run events && npm run articles && npm run talks && npm run explorer" + "all": "npm run core && npm run contribs && npm run articles && npm run talks && npm run explorer" }, "dependencies": { "@astrojs/tailwind": "^5.0.2", diff --git a/src/components/AboutFooter.astro b/src/components/AboutFooter.astro index 7483412..9b62e81 100644 --- a/src/components/AboutFooter.astro +++ b/src/components/AboutFooter.astro @@ -1,6 +1,7 @@ --- import * as config from '../config.yaml'; +import core from '../core.json'; import contributors from '../contributors.json'; --- @@ -9,7 +10,7 @@ import contributors from '../contributors.json';