Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/npm_and_yarn/packages/ifc-syntax-…
Browse files Browse the repository at this point in the history
…docgen/minimist-1.2.8
  • Loading branch information
AlanRynne authored Jun 11, 2024
2 parents 18500b6 + 6eba944 commit ff02042
Show file tree
Hide file tree
Showing 58 changed files with 7,606 additions and 11,428 deletions.
16 changes: 15 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,24 @@
**/node_modules
**/dist
**/out
**/*.tsbuildinfo
**/.DS_Store
**/.idea
**/build
**/uncovered/*.ifc

**/lerna-debug.log
**/coverage
**/results
**/Icon

**/*.g.ts

!**/.gitkeep

# **/packages/ifc*-ts/
examples/ifc/bigFiles/
examples/ifc/bigFiles/**


**/bin/
**/obj/
43 changes: 0 additions & 43 deletions .vscode/launch.json

This file was deleted.

5 changes: 0 additions & 5 deletions .vscode/settings.json

This file was deleted.

17 changes: 0 additions & 17 deletions .vscode/tasks.json

This file was deleted.

83 changes: 83 additions & 0 deletions ifc-developer-tools.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
{
"folders": [
{
"name": "root",
"path": "./"
},
{
"path": "packages/ifc-syntax-ast-parser"
},
{
"path": "packages/ifc-syntax-codegen"
},
{
"path": "packages/ifc-syntax-docgen"
},
{
"path": "packages/ifc-syntax-vscode"
},
{
"path": "packages/ifc-syntax-server"
},
{
"path": "packages/ifc-syntax-parser"
},
{
"path": "packages/ifc-syntax-express-parser"
}
],
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "lerna-watch",
"type": "npm",
"script": "lerna-watch",
"isBackground": true,
"problemMatcher": [],
"detail": "lerna watch --verbose -- lerna run build --scope=\\$LERNA_PACKAGE_NAME ",
"group": {
"kind": "build",
"isDefault": true
}
}
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"type": "extensionHost",
"request": "launch",
"name": "Launch Client",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}/packages/ifc-syntax-vscode/"],
"outFiles": ["${workspaceRoot}/packages/ifc-syntax-vscode/dist/**/*.js"],
"sourceMaps": true
},
{
"type": "node",
"request": "attach",
"name": "Attach to Server",
"port": 6009,
"restart": true,
"timeout": 20000,
"outFiles": ["${workspaceRoot}/packages/**/dist/**/*.js"],
"sourceMaps": true
}
],
"compounds": [
{
"name": "Client + Server",
"configurations": ["Launch Client", "Attach to Server"]
}
]
},
"settings": {
"files.exclude": {
"**/node_modules": false
},
"testing.openTesting": "neverOpen",
"typescript.tsdk": "node_modules/typescript/lib"
}
}
Loading

0 comments on commit ff02042

Please sign in to comment.