Skip to content

Commit

Permalink
Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
DaanV2 committed Aug 18, 2021
1 parent d606e18 commit 657f17d
Show file tree
Hide file tree
Showing 4 changed files with 3,776 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,7 @@ general/**/*.json linguist-vendored=true
language/**/*.json linguist-vendored=true
resource/**/*.json linguist-vendored=true
skinpacks/**/*.json linguist-vendored=true
*.json linguist-detectable=true
*.json linguist-detectable=true

node_modules/
node_modules
44 changes: 44 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,50 @@
"label": "Format workspace",
"command": "Powershell.exe -executionpolicy remotesigned -File ./scripts/format_documents.ps1",
"problemMatcher": "$tsc"
},
{
"type": "npm",
"script": "watch",
"isBackground": true,
"group": {
"kind": "build",
"isDefault": true
},
"presentation": { "reveal": "silent", "panel": "dedicated" },
"problemMatcher": ["$tsc-watch"]
},
{
"type": "npm",
"script": "compile",
"isBackground": false,
"group": "build",
"presentation": { "reveal": "silent", "panel": "dedicated" },
"problemMatcher": ["$tsc"]
},
{
"type": "shell",
"label": "Format workspace",
"command": "Powershell.exe -executionpolicy remotesigned -File ./scripts/format_documents.ps1",
"problemMatcher": "$tsc"
},
{
"type": "shell",
"label": "build extension",
"command": "./scripts/build.bat",
"group": "build",
"problemMatcher": "$tsc"
},
{
"type": "shell",
"label": "install project extension",
"command": "Powershell.exe -executionpolicy remotesigned -File ./scripts/install.ps1",
"problemMatcher": "$tsc"
},
{
"type": "shell",
"label": "update project extension",
"command": "Powershell.exe -executionpolicy remotesigned -File ./scripts/update.ps1",
"problemMatcher": "$tsc"
}
]
}
Loading

0 comments on commit 657f17d

Please sign in to comment.