firefly-compiler 0.5.81 → 0.5.82
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lsp/CompletionHandler.ff +1 -1
- package/package.json +1 -1
- package/vscode/package.json +1 -1
package/lsp/CompletionHandler.ff
CHANGED
|
@@ -870,7 +870,7 @@ toplevelCompletion(lspHook: LspHook): List[CompletionInfo] {
|
|
|
870
870
|
" if(request.readPath() == \"/\") {"
|
|
871
871
|
" request.writeHeader(\"Content-Type\", \"text/html; charset=UTF-8\")"
|
|
872
872
|
" request.writeText(\"<!doctype html>\")"
|
|
873
|
-
" request.writeText(\"<script type='module' src='/js/script/script/$TM_FILENAME_BASE.mjs'></script>\")"
|
|
873
|
+
" request.writeText(\"<script type='module' src='/js/script/script/$TM_FILENAME_BASE.run.mjs'></script>\")"
|
|
874
874
|
" } elseIf {request.readPath() == \"/hello\"} {"
|
|
875
875
|
" request.writeHeader(\"Content-Type\", \"text/plain; charset=UTF-8\")"
|
|
876
876
|
" request.writeText(\"Hello from server!\")"
|
package/package.json
CHANGED