Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/compeydev/bun-lune-loader
Bun plugin for importing lua & luau using lune, the standalone luau script runtime.
https://github.com/compeydev/bun-lune-loader
Last synced: about 7 hours ago
JSON representation
Bun plugin for importing lua & luau using lune, the standalone luau script runtime.
- Host: GitHub
- URL: https://github.com/compeydev/bun-lune-loader
- Owner: CompeyDev
- Created: 2023-09-15T11:56:09.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-25T13:55:57.000Z (about 1 year ago)
- Last Synced: 2024-04-17T16:14:16.987Z (7 months ago)
- Language: TypeScript
- Homepage: https://github.com/filiptibell/lune
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bun-luau-loader
Allows to import lua/luau files in TypeScript. Requires Lune.
```lua
-- module.luau
return {
SomeKey = "SomeValue"
}
``````ts
// index.ts
import { SomeKey } from "./module.luau"
```