moving some files around

This commit is contained in:
Aaron Powell 2025-10-23 16:38:41 +11:00
parent 3adf3dc1c6
commit 4ecaab0924
6 changed files with 9 additions and 6 deletions

6
.vscode/tasks.json vendored
View File

@ -4,7 +4,7 @@
{
"label": "generate-readme",
"type": "shell",
"command": "node ${workspaceFolder}/update-readme.js",
"command": "node ${workspaceFolder}/eng/update-readme.js",
"problemMatcher": [],
"group": {
"kind": "build",
@ -15,7 +15,7 @@
{
"label": "validate-collections",
"type": "shell",
"command": "node ${workspaceFolder}/validate-collections.js",
"command": "node ${workspaceFolder}/eng/validate-collections.js",
"problemMatcher": [],
"group": "build",
"detail": "Validates all collection manifest files."
@ -25,7 +25,7 @@
"type": "shell",
"command": "node",
"args": [
"${workspaceFolder}/create-collection.js",
"${workspaceFolder}/eng/create-collection.js",
"--id",
"${input:collectionId}",
"--tags",

View File

@ -6,7 +6,7 @@ const {
parseCollectionYaml,
extractMcpServers,
parseAgentFrontmatter,
} = require("./yaml-parser");
} = require("../yaml-parser");
// Template sections for the README
const TEMPLATES = {

View File

@ -2,7 +2,10 @@
const fs = require("fs");
const path = require("path");
const { parseCollectionYaml, parseAgentFrontmatter } = require("./yaml-parser");
const {
parseCollectionYaml,
parseAgentFrontmatter,
} = require("../yaml-parser");
// Maximum number of items allowed in a collection
const MAX_COLLECTION_ITEMS = 50;

View File

@ -6,7 +6,7 @@
"private": true,
"scripts": {
"start": "node run build",
"build": "node update-readme.js",
"build": "node ./eng/update-readme.js",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"contributors:check": "all-contributors check"