moving some files around
This commit is contained in:
parent
3adf3dc1c6
commit
4ecaab0924
6
.vscode/tasks.json
vendored
6
.vscode/tasks.json
vendored
@ -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",
|
||||
|
||||
@ -6,7 +6,7 @@ const {
|
||||
parseCollectionYaml,
|
||||
extractMcpServers,
|
||||
parseAgentFrontmatter,
|
||||
} = require("./yaml-parser");
|
||||
} = require("../yaml-parser");
|
||||
|
||||
// Template sections for the README
|
||||
const TEMPLATES = {
|
||||
@ -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;
|
||||
@ -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"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user