Compare commits

..

3 commits

Author SHA1 Message Date
marked
5704047191 Sync to upstream Jecs 0.5.5 2025-03-12 20:36:26 +00:00
marked
d756446628 Test in prod 2025-03-12 21:35:54 +01:00
aabec33829 Sync to upstream Jecs 0.5.5 (#8)
Reviewed-on: #8
2025-03-12 21:09:14 +01:00
4 changed files with 2575 additions and 11 deletions

View file

@ -87,7 +87,7 @@ local function download_list(list: { { path: string, output: string } })
end end
download_list({ download_list({
{ path = "jecs.luau", output = "init.luau" }, { path = "jecs.luau", output = "$" },
{ path = ".luaurc", output = "$" }, { path = ".luaurc", output = "$" },
{ path = "LICENSE", output = "$" }, { path = "LICENSE", output = "$" },
{ path = "README.md", output = "$" }, { path = "README.md", output = "$" },
@ -113,7 +113,7 @@ local pesde_manifest: types.pesde_manifest = {
repository = "https://git.devmarked.win/marked/jecs-pesde", repository = "https://git.devmarked.win/marked/jecs-pesde",
license = manifest.package.license, license = manifest.package.license,
includes = { includes = {
"init.luau", "jecs.luau",
"pesde.toml", "pesde.toml",
"README.md", "README.md",
"CHANGELOG.md", "CHANGELOG.md",
@ -123,7 +123,7 @@ local pesde_manifest: types.pesde_manifest = {
target = { target = {
environment = "luau", environment = "luau",
lib = "init.luau", lib = "jecs.luau",
}, },
indices = { indices = {
@ -139,7 +139,7 @@ local pesde_roblox_manifest: types.pesde_manifest = {
repository = "https://git.devmarked.win/marked/jecs-pesde", repository = "https://git.devmarked.win/marked/jecs-pesde",
license = manifest.package.license, license = manifest.package.license,
includes = { includes = {
"init.luau", "jecs.luau",
"pesde.toml", "pesde.toml",
"README.md", "README.md",
"CHANGELOG.md", "CHANGELOG.md",
@ -149,8 +149,8 @@ local pesde_roblox_manifest: types.pesde_manifest = {
target = { target = {
environment = "roblox", environment = "roblox",
lib = "init.luau", lib = "jecs.luau",
build_files = { "init.luau" }, build_files = { "jecs.luau" },
}, },
indices = { indices = {

2564
jecs.luau Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,7 @@
authors = ["jecs authors"] authors = ["jecs authors"]
description = "A minimal copy of jecs published on the official pesde registry" description = "A minimal copy of jecs published on the official pesde registry"
includes = [ includes = [
"init.luau", "jecs.luau",
"pesde.toml", "pesde.toml",
"README.md", "README.md",
"CHANGELOG.md", "CHANGELOG.md",
@ -17,6 +17,6 @@ version = "0.5.5"
default = "https://github.com/pesde-pkg/index" default = "https://github.com/pesde-pkg/index"
[target] [target]
build_files = ["init.luau"] build_files = ["jecs.luau"]
environment = "roblox" environment = "roblox"
lib = "init.luau" lib = "jecs.luau"

View file

@ -1,7 +1,7 @@
authors = ["jecs authors"] authors = ["jecs authors"]
description = "A minimal copy of jecs published on the official pesde registry" description = "A minimal copy of jecs published on the official pesde registry"
includes = [ includes = [
"init.luau", "jecs.luau",
"pesde.toml", "pesde.toml",
"README.md", "README.md",
"CHANGELOG.md", "CHANGELOG.md",
@ -18,4 +18,4 @@ default = "https://github.com/pesde-pkg/index"
[target] [target]
environment = "luau" environment = "luau"
lib = "init.luau" lib = "jecs.luau"