Skip to content

Commit

Permalink
Merge branch 'feat/standalone-executable' of https://github.com/0x5ea…
Browse files Browse the repository at this point in the history
…l/lune-standalone-compiler into feat/standalone-executable
  • Loading branch information
CompeyDev committed Jan 5, 2024
2 parents 3c2464d + 6f3d11c commit e425581
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
5 changes: 3 additions & 2 deletions .justfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,10 @@ fmt-check:
analyze:
#!/usr/bin/env bash
set -euo pipefail
luau-lsp analyze .lune scripts tests types \
luau-lsp analyze \
--settings=".vscode/settings.json" \
--ignore="tests/roblox/rbx-test-files/**"
--ignore="tests/roblox/rbx-test-files/**" \
.lune scripts tests types
# Zips up the built binary into a single zip file
[no-exit-message]
Expand Down
2 changes: 1 addition & 1 deletion .lune/hello_lune.luau
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ local apiResult = net.request({
method = "PATCH",
headers = {
["Content-Type"] = "application/json",
},
} :: { [string]: string },
body = net.jsonEncode({
title = "foo",
body = "bar",
Expand Down
6 changes: 3 additions & 3 deletions aftman.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[tools]
luau-lsp = "JohnnyMorganz/luau-lsp@1.24.1"
selene = "Kampfkarren/selene@0.25.0"
stylua = "JohnnyMorganz/StyLua@0.18.2"
luau-lsp = "JohnnyMorganz/luau-lsp@1.27.0"
selene = "Kampfkarren/selene@0.26.1"
stylua = "JohnnyMorganz/StyLua@0.19.1"
4 changes: 2 additions & 2 deletions tests/net/request/compression.luau
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ local response = net.request({
url = "https://httpbingo.org/gzip",
headers = {
["Accept-Encoding"] = "gzip",
},
} :: { [string]: string },
})

assert(
Expand All @@ -33,7 +33,7 @@ local response2 = net.request({
url = "https://httpbingo.org/gzip",
headers = {
["Accept-Encoding"] = "gzip",
},
} :: { [string]: string },
options = { decompress = false },
})

Expand Down

0 comments on commit e425581

Please sign in to comment.