Compare commits

..

1 commit

Author SHA1 Message Date
marked
b3970fde08 Sync to upstream Jecs 0.5.5 2025-03-12 20:09:12 +00:00
4 changed files with 11 additions and 2575 deletions

View file

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

2564
jecs.luau

File diff suppressed because it is too large Load diff

View file

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

View file

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