mirror of
https://github.com/centau/vide.git
synced 2026-08-20 14:41:37 +00:00
fix: use string requires in init.luau
@self string requires are now supported by Roblox, so this should be fine. It works in my Pesde patches and fixes issues with missing types.
This commit is contained in:
parent
8f963fd14c
commit
91920ff9b9
1 changed files with 1 additions and 1 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
assert(game, "when using vide outside of Roblox, require lib.luau instead")
|
assert(game, "when using vide outside of Roblox, require lib.luau instead")
|
||||||
|
|
||||||
local vide = require(script.lib)
|
local vide = require("@self/lib")
|
||||||
|
|
||||||
export type source<T> = vide.source<T>
|
export type source<T> = vide.source<T>
|
||||||
export type Source<T> = vide.Source<T>
|
export type Source<T> = vide.Source<T>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue