fixing task and file permissions

This commit is contained in:
Aaron Powell 2025-09-15 11:12:54 +10:00
parent 0202b019b2
commit b6b5f784c8
3 changed files with 7 additions and 4 deletions

11
.vscode/tasks.json vendored
View File

@ -4,7 +4,7 @@
{
"label": "generate-readme",
"type": "shell",
"command": "node update-readme.js",
"command": "node ${workspaceFolder}/update-readme.js",
"problemMatcher": [],
"group": {
"kind": "build",
@ -15,7 +15,7 @@
{
"label": "validate-collections",
"type": "shell",
"command": "node validate-collections.js",
"command": "node ${workspaceFolder}/validate-collections.js",
"problemMatcher": [],
"group": "build",
"detail": "Validates all collection manifest files."
@ -23,8 +23,11 @@
{
"label": "create-collection",
"type": "shell",
"command": "${workspaceFolder}/create-collection.js",
"args": ["${input:collectionId}"],
"command": "node",
"args": [
"${workspaceFolder}/create-collection.js",
"${input:collectionId}"
],
"problemMatcher": [],
"group": "build",
"detail": "Creates a new collection manifest template."

0
create-collection.js Normal file → Executable file
View File

0
validate-collections.js Normal file → Executable file
View File