Skip to content

Commit

Permalink
Fix wally packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
Pyseph committed Aug 30, 2023
1 parent 3bfad05 commit 2dd0c49
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 6 deletions.
12 changes: 12 additions & 0 deletions build.project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "MethodTween",
"tree": {
"$path": "build/main.lua",
"src": {
"$path": "src/"
},
"Packages": {
"$path": "Packages/"
}
}
}
1 change: 1 addition & 0 deletions build/main.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
return require(script.src)
5 changes: 1 addition & 4 deletions default.project.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
{
"name": "MethodTween",
"tree": {
"$path": "src/",
"Packages": {
"$path": "Packages/"
}
"$path": "src"
}
}
Binary file modified release.rbxm
Binary file not shown.
3 changes: 2 additions & 1 deletion src/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
local TweenService = game:GetService("TweenService")
local RunService = game:GetService("RunService")

local Signal = require(script.Packages.Signal)
local Package = script.Parent
local Signal = require(Package.Signal)

local builtInLerps = {
CFrame = true,
Expand Down
2 changes: 1 addition & 1 deletion wally.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pysephwasntavailable/methodtween"
version = "1.1.1"
version = "1.1.3"
registry = "https://github.com/UpliftGames/wally-index"
realm = "shared"
description = "Tweening library extension for object methods."
Expand Down

0 comments on commit 2dd0c49

Please sign in to comment.