mirror of
https://github.com/centau/vide.git
synced 2026-08-20 14:41:37 +00:00
Update require paths to relative string
This commit is contained in:
parent
0897821e1f
commit
5abd5eee91
25 changed files with 89 additions and 124 deletions
|
|
@ -1,10 +1,10 @@
|
|||
if not game then script = require "test/relative-string" end
|
||||
local typeof = game and typeof or require "test/mock".typeof:: never
|
||||
local Instance = game and Instance or require "test/mock".Instance :: never
|
||||
if not game then script = require "../test/relative-string" end
|
||||
local typeof = game and typeof or require "../test/mock".typeof :: never
|
||||
local Instance = game and Instance or require "../test/mock".Instance :: never
|
||||
|
||||
local throw = require(script.Parent.throw)
|
||||
local defaults = require(script.Parent.defaults)
|
||||
local apply = require(script.Parent.apply)
|
||||
local throw = require "./throw"
|
||||
local defaults = require "./defaults"
|
||||
local apply = require "./apply"
|
||||
|
||||
local ctor_cache = {} :: { [string]: () -> Instance }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue