Skip to content

Commit c79f035

Browse files
committedDec 18, 2024·
Small fixes for lox example.
1 parent 54b0191 commit c79f035

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed
 

‎.vscode/launch.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
],
2929
"sourceMaps": true,
3030
"outFiles": [
31-
"${workspaceFolder}/examples/lox/out/**/*.js"
31+
"${workspaceFolder}/examples/lox/out/**/*.js",
32+
"${workspaceFolder}/examples/lox/node_modules/langium/**/*.js"
3233
]
3334
},
3435
{

‎examples/lox/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,6 @@
7575
],
7676
"main": "./out/extension/main.cjs",
7777
"bin": {
78-
"ox-cli": "out/cli/main.js"
78+
"lox-cli": "out/cli/main.js"
7979
}
8080
}

‎package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.