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');
55var nrc = require ( 'child_process' ) ;
66function compilePath ( path ) {
77 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 } "` ;
910 nrc . exec ( command ) ;
1011 }
1112}
Original file line number Diff line number Diff line change 22 "name" : " lpp-pipeline" ,
33 "displayName" : " lpp-pipeline" ,
44 "description" : " Makes using lua++ script easy." ,
5- "version" : " 0.0.1 " ,
5+ "version" : " 0.0.2 " ,
66 "engines" : {
77 "vscode" : " ^1.45.0"
88 },
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