Commit graph

59 commits

Author SHA1 Message Date
a3e103cd3a
Merge branch 'main' into main 2024-12-01 00:05:52 +05:30
1ba4e229e6 chore(lune): remove GitHub auth token present in code
Whoopsie... FYI it has been revoked now :3
2024-11-30 18:34:30 +00:00
799f5aec82 chore(lune): include tool to automatically update bin packages 2024-11-30 18:29:37 +00:00
3d1f3a86e1 chore(luaurc): re-enable lint warnings for analysis 2024-11-30 18:29:36 +00:00
b827002376 feat(lib): relocate GithubReleases type and implement custom payload
* Also breaks down `GithubReleases` into array of `GithubRelease` type
* Adds a `Custom` operation type for internal `Github` class, allowing
  user to mention custom request data
2024-11-30 18:29:36 +00:00
Arid
238f74735b feat(bins): include rgon bin 2024-11-30 13:35:38 +06:00
b60f8a7d3e
chore(README): bring pesde x example back and include prereq note 2024-11-30 11:41:42 +05:30
1a43fffc99
chore(README): update tooling table list 2024-11-30 11:36:30 +05:30
c31fc1f4fd feat(bins): include darklua bin 2024-11-30 06:00:47 +00:00
ddd4d6e889 chore(bins): bump blink to 0.15.0-rc.1
Also refreshes lockfile cache for all workspace members.
2024-11-30 05:53:56 +00:00
5e5ed11bf7 fix(lib): fix exec detection fallthrough
If the executable was invalid, and wasn't PE or ELF, it would fall
through into the Mach-O case, which was a false positive.
2024-11-28 17:48:57 +00:00
3e350de351 chore(lib): bump version 2024-11-28 16:37:01 +00:00
5cc0db1c6b chore: include updated lockfile 2024-11-28 16:34:03 +00:00
6497d423af feat(bins): include blink bin 2024-11-28 16:33:44 +00:00
6c3b1f48b6 fix(lib): bad chmod mode value
In this previous commit, it was setting mode to base-10 755, which is
equivalent to octal 1363, being an invalid mode.
2024-11-28 16:31:20 +00:00
c531d75a2b feat(bins): include selene tool 2024-11-28 16:10:39 +00:00
e41ae9a2a8 feat(lib): use different tool_storage structure, chmod on unix
* Fix for tools which don't already provide zips with binaries that have
  their executable bit set, by executing chmod before attempting to run.
* Uses a different tool_storage structure to prevent changing the tool
  name and causing confusion for tools which change their help menu
  binary name based on the current exe name.
2024-11-28 16:08:15 +00:00
febf03dc35 feat(bins): include rojo bin 2024-11-28 15:46:19 +00:00
8b970dc01e
chore(README): fix luau-lsp package name being incorrect 2024-11-27 15:34:14 +05:30
b1aa268494
chore(lib): fix powered by lune badge 2024-11-26 13:04:01 +05:30
b98c3b926a
chore(README): use stylua as example and note about support 2024-11-26 13:01:48 +05:30
357b904647
chore(README): fix broken lune badge 2024-11-26 12:53:46 +05:30
bf7dd1a946
chore(README): left align items in table 2024-11-25 22:06:55 +05:30
2508c96bb2
chore(README): include license section 2024-11-25 22:06:07 +05:30
d4d1fd1b21
chore(README): remove bins/ README 2024-11-25 22:04:22 +05:30
79fc058e88
chore: include repo README 2024-11-25 22:03:51 +05:30
72af13ffc0
chore(lib/README): update pesde badge to include version from manifest 2024-11-25 21:32:42 +05:30
26dbaa8dd8 chore: include README for bins/ dir 2024-11-25 15:35:58 +00:00
9adf3d6741 chore(lib): include README 2024-11-25 15:25:21 +00:00
e17fd8c409 revert: Expand-Archive cmdlet displaying prog
Reverts 694430b768.
2024-11-25 12:04:22 +00:00
694430b768 fix(lib): Expand-Archive cmdlet displaying prog 2024-11-25 11:55:47 +00:00
58184b5bd1 style: apply formatting to all files 2024-11-25 11:47:56 +00:00
e2d4d472c6 fix(lib): forward pwsh stdout on windows debug 2024-11-25 11:45:07 +00:00
65b150e247 fix(lib): bad argument to Start-Process cmdlet 2024-11-25 11:43:15 +00:00
2c759140c9 fix(lib): decompression on windows
* Decompression on windows failed since the `Start-Process` cmdlet exited
  immediately after spawning the process. Fixed by including the `-Wait`
  argument.
* We were using `unzip` on all platforms, and it does not exist on
  Windows. Instead, now we use the `Expand-Archive` cmdlet for
  decompression on windows.
2024-11-25 11:24:18 +00:00
865eae5791 chore: update pesde workspace lockfile 2024-11-25 08:21:01 +00:00
e291a4e499 chore(lune): make typecheck dev script use our bin 2024-11-25 08:20:19 +00:00
242fa13005 feat(bins): include luau-lsp as tooling 2024-11-25 08:15:43 +00:00
4c709c9f04 fix(lib): binary descriptor fallback not matching
* Fixes a bug which caused binary parsing fallbacks to not work as
  expected, due to a field unexpectedly being `None`.
* Fixed lint error to do with warn being potentially none by defining
  our own warn function instead. Also updated fallback binary parsing
  fallback warn message to be clearer.
* Fixed decompression error for non-supported artifacts by only
  decompressing those we support.
2024-11-25 08:10:05 +00:00
36a17f2c0a chore(lune): include lune dev scripts
* Adds dev lune scripts to execute tooling in dev env, also a nice way
  to dogfood the project.
* Disables all lints in luaurc temporarily, since luau-lsp analysis displays
  lint errors even for ignored files for some reason.
* Fixes a few `TypeError`s.
2024-11-25 06:23:39 +00:00
cea3028bda chore(lib): update included license path 2024-11-24 18:06:09 +00:00
0c8fcb9456 refactor: add note about exit code propagation 2024-11-24 17:59:42 +00:00
5bd9ec3a3c chore(LICENSE): remove non-markdown licenses 2024-11-24 17:59:02 +00:00
0cfff8d923 chore(LICENSE): rename to include markdown ext 2024-11-24 17:10:41 +00:00
a398e9e6fd chore(pkg): update pesde manifests
* stylua: Fixed pesde manifest description
* lib: Explicitly defined includes
* lib: Symlink root license into dir
2024-11-24 15:24:19 +00:00
0242ab6968 feat: move all install path logic into __call
Also does this following:
* Properly types metatable return
* Runs tool after installation, previously the tool would not get
  executed post installation
* Further removal of manual alias handling
2024-11-23 17:30:46 +00:00
c11bcc758a feat(lib): offload all linking logic to pesde 2024-11-23 16:53:12 +00:00
1d08ea4611 fix(lib): TypeErrors in shorthand constructor 2024-11-23 16:01:44 +00:00
400814dd9b feat: use dev mode based on env var 2024-11-23 15:59:22 +00:00
8a02ffc351 refactor: restructure repo
* Restructures monorepo packages
* Updated pesde manifests with scope and other metadata
* Consolidated all interactive install logic into __call metamethod for
  one liner bin re-exports
* Renamed binlib->toolchainlib
* Introduced first real world package - stylua (!!)
2024-11-23 14:35:23 +00:00