Skip to content

Commit

Permalink
Merge branch 'main' into item-components
Browse files Browse the repository at this point in the history
  • Loading branch information
MulverineX authored May 14, 2024
2 parents 4e2b98f + 449e7c6 commit 2abf973
Show file tree
Hide file tree
Showing 84 changed files with 2,822 additions and 15,202 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}/packages/vscode-extension"],
"outFiles": ["${workspaceRoot}/packages/vscode-extension/dist/**/*.js"],
"preLaunchTask": "npm: watch - packages/vscode-extension"
"preLaunchTask": "npm: watch"
},
{
"type": "node",
Expand Down
10 changes: 5 additions & 5 deletions .vscode/snippets.code-snippets
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
"scope": "javascript,typescript",
"prefix": "astis",
"body": [
"export const ${1:Node} = Object.freeze({",
"\tis(node: AstNode | undefined): node is ${1:Node} {",
"export namespace ${1:Node} {",
"\texport function is<T extends DeepReadonly<AstNode> | undefined>(node: T): node is InheritReadonly<${1:Node}, T> {",
"\t\treturn (node as ${1:Node} | undefined)?.type === '${2:type}'",
"\t},",
"})",
"\t}",
"}",
]
},
"destruct": {
Expand All @@ -33,4 +33,4 @@
"const { $0 } = $1.destruct(${2:node})"
]
},
}
}
33 changes: 0 additions & 33 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,39 +32,6 @@
"label": "npm: watch",
"detail": "Compiles all packages to JavaScript."
},
{
"type": "npm",
"script": "watch",
"group": "build",
"isBackground": true,
"path": "packages/vscode-extension/",
"dependsOn": "npm: watch",
"problemMatcher": {
"severity": "error",
"fileLocation": "absolute",
"source": "esbuild",
"background": {
"activeOnStart": true,
"beginsPattern": "Start building\\.\\.\\.",
"endsPattern": "Built successfully\\."
},
"pattern": [
{
"regexp": "ERROR in ([^\\(]*)\\((\\d+),(\\d+)\\):",
"file": 1,
"line": 2,
"column": 3
},
{
"regexp": "([A-Za-z0-9-]+):(.*)",
"message": 2,
"code": 1
}
]
},
"label": "npm: watch - packages/vscode-extension",
"detail": "Builds the VS Code extension."
},
{
"type": "npm",
"script": "test",
Expand Down

This file was deleted.

Loading

0 comments on commit 2abf973

Please sign in to comment.