From 1ff514b8eadecab338e7566025da580e7f9e620c Mon Sep 17 00:00:00 2001 From: Madison <513906+Phalanxia@users.noreply.github.com> Date: Wed, 18 Oct 2023 21:39:16 -0700 Subject: [PATCH] Update wally config + related items (#64) --- .gitignore | 1 + .styluaignore | 1 + selene.toml | 1 + wally.lock | 4 ++-- wally.toml | 8 +++++++- 5 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 236b309..c80486a 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,7 @@ # Wally packages +devpackages # macOS artifacts .DS_Store diff --git a/.styluaignore b/.styluaignore index 9dbd8f7..6956ee6 100644 --- a/.styluaignore +++ b/.styluaignore @@ -1 +1,2 @@ Packages/ +DevPackages/ diff --git a/selene.toml b/selene.toml index 5a8d332..3a826e3 100644 --- a/selene.toml +++ b/selene.toml @@ -2,6 +2,7 @@ std = "roblox+testez" exclude = [ ".github/*", "Packages/*", + "DevPackages/*", "scripts/*", "tools/*", "*.spec.lua", diff --git a/wally.lock b/wally.lock index b5b031d..7342e1a 100644 --- a/wally.lock +++ b/wally.lock @@ -3,9 +3,9 @@ registry = "test" [[package]] -name = "me/recs" +name = "matches/recs" version = "0.1.0" -dependencies = [["TestEZ", "roblox/testez@0.4.1"], ["t", "osyrisrblx/t@3.0.0"]] +dependencies = [["t", "osyrisrblx/t@3.0.0"], ["TestEZ", "roblox/testez@0.4.1"]] [[package]] name = "osyrisrblx/t" diff --git a/wally.toml b/wally.toml index cb3a223..2d35ef7 100644 --- a/wally.toml +++ b/wally.toml @@ -1,9 +1,15 @@ [package] -name = "recs" +name = "matches/recs" +description = "An entity component system library written in Luau, for use in Roblox." +authors = ["AmaranthineCodices ", "Madi "] version = "0.1.0" +license = "MIT" registry = "https://github.com/UpliftGames/wally-index" realm = "shared" +private = false [dependencies] t = "osyrisrblx/t@3.0.0" + +[dev-dependencies] TestEZ = "roblox/testez@0.4.1"