Update require paths to relative string

This commit is contained in:
aaron 2024-11-13 22:19:20 +00:00
parent 0897821e1f
commit 5abd5eee91
25 changed files with 89 additions and 124 deletions

View file

@ -1,5 +1,4 @@
if not game then script = require "test/relative-string" end
local Vector3 = game and Vector3 or require "test/mock".Vector3 :: never
local Vector3 = game and Vector3 or require "../test/mock".Vector3 :: never
--[[
@ -21,8 +20,8 @@ Unsupported datatypes:
]]
local throw = require(script.Parent.throw)
local graph = require(script.Parent.graph)
local throw = require "./throw"
local graph = require "./graph"
type Node<T> = graph.Node<T>
type SourceNode<T> = graph.SourceNode<T>
local create_node = graph.create_node