File tree Expand file tree Collapse file tree 4 files changed +11
-2
lines changed Expand file tree Collapse file tree 4 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ const extensionConfig = vscode.workspace.getConfiguration('lpp');
5
5
var nrc = require ( 'child_process' ) ;
6
6
function compilePath ( path ) {
7
7
if ( path . endsWith ( ".lpp" ) ) {
8
- var command = `java -jar "${ extensionConfig . get ( "jar-path" ) } " "${ path } "` ;
8
+ console . log ( )
9
+ var command = `java -jar "${ extensionConfig . get ( "transpiler" ) } " "${ path } "` ;
9
10
nrc . exec ( command ) ;
10
11
}
11
12
}
Original file line number Diff line number Diff line change 2
2
"name" : " lpp-pipeline" ,
3
3
"displayName" : " lpp-pipeline" ,
4
4
"description" : " Makes using lua++ script easy." ,
5
- "version" : " 0.0.1 " ,
5
+ "version" : " 0.0.2 " ,
6
6
"engines" : {
7
7
"vscode" : " ^1.45.0"
8
8
},
Original file line number Diff line number Diff line change
1
+ print("hello")
Original file line number Diff line number Diff line change
1
+ --[[
2
+ Written with Lua++.
3
+ Don't remove this notice please
4
+
5
+ https://github.com/LuaPlusPlus/lua-plus-plus
6
+ ]] --
7
+ print (" hello" )
You can’t perform that action at this time.
0 commit comments