Skip to content

Commit

Permalink
Merge branch 'ifc-syntax-maintenance-bump'
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanRynne committed May 19, 2024
2 parents f45efab + 85b5385 commit 3a6712c
Show file tree
Hide file tree
Showing 25 changed files with 37,828 additions and 37,620 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/lernaci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,17 @@ on:
pull_request:
branches: [main]

permissions:
packages: write
contents: read

jobs:
build:
name: Build Monorepo
runs-on: macos-latest

runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]

node-version: [20.x]
steps:
- name: 🚧 Checkout code
uses: actions/checkout@v2
Expand Down
75 changes: 38 additions & 37 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,48 +3,49 @@
"version": "0.2.0",
"configurations": [
{
"type": "extensionHost",
"request": "launch",
"name": "Launch Client",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceRoot}/packages/ifc-syntax-vscode/"
],
"outFiles": [
"${workspaceRoot}/packages/**/dist/**/*.js"
],
"preLaunchTask": {
"type": "npm",
"script": "watch"
},
"sourceMaps": true
"args": [
"--extensionDevelopmentPath=${workspaceFolder}/packages/ifc-test/"
],
"name": "Launch Extension",
"request": "launch",
"type": "extensionHost"
},
{
"type": "node",
"request": "attach",
"name": "Attach to Server",
"port": 6009,
"restart": true,
"timeout": 20000,
"outFiles": [
"${workspaceRoot}/packages/**/dist/**/*.js"
],
"sourceMaps": true
"type": "extensionHost",
"request": "launch",
"name": "Launch Client",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceRoot}/packages/ifc-syntax-vscode/"
],
"outFiles": ["${workspaceRoot}/packages/ifc-syntax-vscode/dist/**/*.js"],
"preLaunchTask": {
"type": "npm",
"script": "watch"
},
"sourceMaps": true
},
{
"type": "node",
"name": "vscode-jest-tests",
"request": "launch",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true,
"program": "${workspaceFolder}/jest",
"cwd": "${workspaceFolder}",
"args": [
"--runInBand"
]
"type": "node",
"request": "attach",
"name": "Attach to Server",
"port": 6009,
"restart": true,
"timeout": 20000,
"outFiles": ["${workspaceRoot}/packages/**/dist/**/*.js"],
"sourceMaps": true
},
{
"type": "node",
"name": "vscode-jest-tests",
"request": "launch",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"program": "${workspaceFolder}/jest",
"cwd": "${workspaceFolder}",
"args": ["--runInBand"]
}
],
],
"compounds": [
{
"name": "Client + Server",
Expand Down
Loading

0 comments on commit 3a6712c

Please sign in to comment.