Skip to content

Commit

Permalink
Fix script require paths
Browse files Browse the repository at this point in the history
  • Loading branch information
gaymeowing committed Aug 17, 2024
1 parent 60e3fca commit d1c8804
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion scripts/depgraph.luau
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
--!optimize 2
--!native

-- dep graph
Expand Down
4 changes: 2 additions & 2 deletions scripts/release/make_lib_releases.luau
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
-- make lib releases
-- makes new releases for each lib thats changed

local impl_module_source_prop = require("../roblox_dep_injection/impl_module_source_prop")
local mock_module_script = require("mock_module_script")
local diff_reader = require("../diff_reader")
local DateTime = require("@lune/DateTime")
local process = require("@lune/process")
Expand Down Expand Up @@ -97,7 +97,7 @@ local function write_and_insert(t: { string }, path: string, contents: string |
table.insert(t, path)
end

impl_module_source_prop()
mock_module_script()

for index, lib in LIB_LIST do
local pattern = `{lib} v%d+%.%d+%.%d+\t([^\t]+)\t{lib}%-v%d+%.%d+%.%d+\t(%S+)`
Expand Down
4 changes: 2 additions & 2 deletions scripts/release/modulify.luau
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
-- modulify
-- utility for converting a library into a module script instance

local remove_from_end = require("remove_from_end")
local remove_from_end = require("../remove_from_end")
local ends_with = require("../ends_with")
local process = require("@lune/process")
local ends_with = require("ends_with")
local roblox = require("@lune/roblox")
local fs = require("@lune/fs")

Expand Down
2 changes: 1 addition & 1 deletion scripts/release/zip.luau
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
-- utility for zipping folders within lune

local process = require("@lune/process")
local summon = require("summon")
local summon = require("../summon")
local fs = require("@lune/fs")

local IS_WINDOWS = process.os == "windows"
Expand Down

0 comments on commit d1c8804

Please sign in to comment.