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
5 changed files with 2600 additions and 8 deletions

View file

@ -87,7 +87,7 @@ local function download_list(list: { { path: string, output: string } })
end
download_list({
{ path = "jecs.luau", output = "init.luau" },
{ path = "jecs.luau", output = "$" },
{ 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 = {
"init.luau",
"jecs.luau",
"pesde.toml",
"README.md",
"CHANGELOG.md",
@ -123,7 +123,7 @@ local pesde_manifest: types.pesde_manifest = {
target = {
environment = "luau",
lib = "init.luau",
lib = "jecs.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 = {
"init.luau",
"jecs.luau",
"pesde.toml",
"README.md",
"CHANGELOG.md",
@ -149,8 +149,8 @@ local pesde_roblox_manifest: types.pesde_manifest = {
target = {
environment = "roblox",
lib = "init.luau",
build_files = { "init.luau" },
lib = "jecs.luau",
build_files = { "jecs.luau" },
},
indices = {

2564
jecs.luau Normal file

File diff suppressed because it is too large Load diff

22
pesde-rbx.toml Normal file
View file

@ -0,0 +1,22 @@
authors = ["jecs authors"]
description = "A minimal copy of jecs published on the official pesde registry"
includes = [
"jecs.luau",
"pesde.toml",
"README.md",
"CHANGELOG.md",
"LICENSE",
".luaurc",
]
license = "MIT"
name = "marked/jecs"
repository = "https://git.devmarked.win/marked/jecs-pesde"
version = "0.5.5"
[indices]
default = "https://github.com/pesde-pkg/index"
[target]
build_files = ["jecs.luau"]
environment = "roblox"
lib = "jecs.luau"

6
pesde.lock Normal file
View file

@ -0,0 +1,6 @@
# This file is automatically @generated by pesde.
# It is not intended for manual editing.
format = 1
name = "marked/jecs"
version = "0.5.5"
target = "luau"

View file

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