Skip to content

Commit

Permalink
add terminal version to release folder
Browse files Browse the repository at this point in the history
  • Loading branch information
Nimaoth committed Jan 5, 2024
1 parent 4d54f54 commit 53c37df
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions tools/package_release.nims
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,13 @@ copySharedFilesTo releaseWeb

if fileExists "ast.exe":
cpFile2 "ast.exe", releaseWindows
cpFile2 "astt.exe", releaseWindows
cpFile2 "tools/absytree-server.exe", releaseWindows
cpFile2 "tools/nimsuggest-ws.exe", releaseWindows

if fileExists "ast":
cpFile2 "ast", releaseLinux
cpFile2 "astt", releaseLinux
cpFile2 "tools/absytree-server", releaseLinux
cpFile2 "tools/nimsuggest-ws", releaseLinux

Expand Down
8 changes: 4 additions & 4 deletions tools/postprocess_docs.nims
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ proc postProcess(filename: string, replacementFile: string) =
# writeFile(fmt"{path}/{name}.post{ext}", result)
writeFile(fmt"{path}/{name}{ext}", result)

postProcess("scripting/htmldocs/editor_text_api.html", "src/text_document.nim")
postProcess("scripting/htmldocs/editor_model_api.html", "src/model_document.nim")
postProcess("scripting/htmldocs/editor_ast_api.html", "src/ast_document.nim")
postProcess("scripting/htmldocs/editor_api.html", "src/editor.nim")
postProcess("scripting/htmldocs/editor_text_api.html", "src/text/text_editor.nim")
postProcess("scripting/htmldocs/editor_model_api.html", "src/ast/model_document.nim")
postProcess("scripting/htmldocs/editor_api.html", "src/app.nim")
postProcess("scripting/htmldocs/lsp_api.html", "src/text/language/lsp_client.nim")
postProcess("scripting/htmldocs/popup_selector_api.html", "src/selector_popup.nim")

0 comments on commit 53c37df

Please sign in to comment.