Compare commits
3 commits
b3970fde08
...
5704047191
Author | SHA1 | Date | |
---|---|---|---|
![]() |
5704047191 | ||
![]() |
d756446628 | ||
aabec33829 |
5 changed files with 2600 additions and 8 deletions
|
@ -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 = {
|
||||||
|
|
22
pesde-rbx.toml
Normal file
22
pesde-rbx.toml
Normal 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
6
pesde.lock
Normal 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"
|
|
@ -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"
|
||||||
|
|
Loading…
Reference in a new issue