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

View File

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

View File

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

View File

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