fixing task and file permissions
This commit is contained in:
parent
0202b019b2
commit
b6b5f784c8
11
.vscode/tasks.json
vendored
11
.vscode/tasks.json
vendored
@ -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
0
create-collection.js
Normal file → Executable file
0
validate-collections.js
Normal file → Executable file
0
validate-collections.js
Normal file → Executable file
Loading…
x
Reference in New Issue
Block a user