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 end
download_list({ download_list({
{ path = "jecs.luau", output = "$" }, { path = "jecs.luau", output = "init.luau" },
{ 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 = {
"jecs.luau", "init.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 = "jecs.luau", lib = "init.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 = {
"jecs.luau", "init.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 = "jecs.luau", lib = "init.luau",
build_files = { "jecs.luau" }, build_files = { "init.luau" },
}, },
indices = { indices = {

2564
jecs.luau

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 = [
"jecs.luau", "init.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 = ["jecs.luau"] build_files = ["init.luau"]
environment = "roblox" environment = "roblox"
lib = "jecs.luau" lib = "init.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 = [
"jecs.luau", "init.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 = "jecs.luau" lib = "init.luau"