Add cleanup for luau
This commit is contained in:
parent
11277dd6bd
commit
cb4be9d556
17 changed files with 3 additions and 3002 deletions
|
@ -79,6 +79,9 @@ jobs:
|
|||
- name: Release
|
||||
run: lune run src/init -- release jecs --pesde-scope marked/jecs_nightly --wally-scope mark-marks/jecs-nightly
|
||||
|
||||
- name: Cleanup Luau
|
||||
run: rm -rf luau-install
|
||||
|
||||
- name: Create Pull Request
|
||||
id: create_pull_request
|
||||
uses: https://git.devmarked.win/actions/create-pull-request@7174d368c2e4450dea17b297819eb28ae93ee645
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"aliases": {
|
||||
"jecs": "jecs",
|
||||
"testkit": "test/testkit",
|
||||
"mirror": "mirror"
|
||||
},
|
||||
"languageMode": "strict"
|
||||
}
|
|
@ -1,205 +0,0 @@
|
|||
# Jecs Changelog
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog][kac], and this project adheres to
|
||||
[Semantic Versioning][semver].
|
||||
|
||||
[kac]: https://keepachangelog.com/en/1.1.0/
|
||||
[semver]: https://semver.org/spec/v2.0.0.html
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
- `[world]`:
|
||||
- 16% faster `world:get`
|
||||
- `world:has` no longer typechecks components after the 8th one.
|
||||
- `[typescript]`
|
||||
|
||||
- Fixed Entity type to default to `undefined | unknown` instead of just `undefined`
|
||||
|
||||
- `[query]`:
|
||||
- Fixed bug where `world:clear` did not invoke `jecs.OnRemove` hooks
|
||||
- Changed `query.__iter` to drain on iteration
|
||||
- It will initialize once wherever you left iteration off at last time
|
||||
- Changed `query:iter` to restart the iterator
|
||||
- Removed `query:drain` and `query:next`
|
||||
- If you want to get individual results outside of a for-loop, you need to call `query:iter` to initialize the iterator and then call the iterator function manually
|
||||
```lua
|
||||
local it = world:query(A, B, C):iter()
|
||||
local entity, a, b, c = it()
|
||||
entity, a, b, c = it() -- get next results
|
||||
```
|
||||
- `[world`
|
||||
- Fixed a bug with `world:clear` not invoking `jecs.OnRemove` hooks
|
||||
- `[typescript]`:
|
||||
- Changed pair to accept generics
|
||||
- Improved handling of Tags
|
||||
|
||||
## [0.3.2] - 2024-10-01
|
||||
|
||||
- `[world]`:
|
||||
- Changed `world:cleanup` to traverse a header type for graph edges. (Edit)
|
||||
- Fixed a regression that occurred when you call `world:set` following a `world:remove` using the same component
|
||||
- Remove explicit error in JECS_DEBUG for `world:target` when not applying an index parameter
|
||||
- `[typescript]` :
|
||||
- Fixed `world.set` with NoInfer<T>
|
||||
|
||||
## [0.3.1] - 2024-10-01
|
||||
|
||||
- `[world]`:
|
||||
- Added an index parameter to `world:target`
|
||||
- Added a way to change the components limit via `_G.JECS_HI_COMPONENT_ID`
|
||||
- Set it to whatever number you want but try to make it as close to the number of components you will use as possible
|
||||
- Make sure to set this before importing jecs or else it will not work
|
||||
- Added debug mode, enable via setting `_G.JECS_DEBUG` to true
|
||||
- Make sure to set this before importing jecs or else it will not work
|
||||
- Added `world:cleanup` which is called to cleanup empty archetypes manually
|
||||
- Changed `world:delete` to delete archetypes that are dependent on the passed entity
|
||||
- Changed `world:delete` to delete entity's children before the entity to prevent cycles
|
||||
- `[query]`:
|
||||
- Fixed the iterator to not drain by default
|
||||
- `[typescript]`
|
||||
- Fixed entry point of the package.json file to be `src` rather than `src/init`
|
||||
- Fixed `query.next` returning a query object whereas it would be expected to return a tuple containing the entity and the corresponding component values
|
||||
- Exported `query.archetypes`
|
||||
- Changed `pair` to return a number instead of an entity
|
||||
- Preventing direct usage of a pair as an entity while still allowing it to be used as a component
|
||||
- Exported built-in components `ChildOf` and `Name`
|
||||
- Exported `world.parent`
|
||||
|
||||
## [0.2.10] - 2024-09-07
|
||||
|
||||
- `[world]`:
|
||||
- Improved performance for hooks
|
||||
- Changed `world:set` to be idempotent when setting tags
|
||||
- `[traits]`:
|
||||
- Added cleanup condition `jecs.OnDelete` for when the entity or component is deleted
|
||||
- Added cleanup action `jecs.Remove` which removes instances of the specified (component) id from all entities
|
||||
- This is the default cleanup action
|
||||
- Added component trait `jecs.Tag` which allows for zero-cost components used as tags
|
||||
- Setting data to a component with this trait will do nothing
|
||||
- `[luau]`:
|
||||
- Exported `world:contains()`
|
||||
- Exported `query:drain()`
|
||||
- Exported `Query`
|
||||
- Improved types for the hook `OnAdd`, `OnSet`, `OnRemove`
|
||||
- Changed functions to accept any ID including pairs in type parameters
|
||||
- Applies to `world:add()`, `world:set()`, `world:remove()`, `world:get()`, `world:has()` and `world:query()`
|
||||
- New exported type `Id<T = nil> = Entity<T> | Pair`
|
||||
- Changed `world:contains()` to return a `boolean` instead of an entity which may or may not exist
|
||||
- Fixed `world:has()` to take the correct parameters
|
||||
|
||||
## [0.2.2] - 2024-07-07
|
||||
|
||||
### Added
|
||||
|
||||
- Added `query:replace(function(...T) return ...U end)` for replacing components in place
|
||||
- Method is fast pathed to replace the data to the components for each corresponding entity
|
||||
|
||||
### Changed
|
||||
|
||||
- Iterator now goes backwards instead to prevent common cases of iterator invalidation
|
||||
|
||||
## [0.2.1] - 2024-07-06
|
||||
|
||||
### Added
|
||||
|
||||
- Added `jecs.Component` built-in component which will be added to ids created with `world:component()`.
|
||||
- Used to find every component id with `query(jecs.Component)
|
||||
|
||||
## [0.2.0] - 2024-07-03
|
||||
|
||||
### Added
|
||||
|
||||
- Added `world:parent(entity)` and `jecs.ChildOf` respectively as first class citizen for building parent-child relationships.
|
||||
- Give a parent to an entity with `world:add($source, pair(ChildOf, $target))`
|
||||
- Use `world:parent(entity)` to find the target of the relationship
|
||||
- Added user-facing Luau types
|
||||
|
||||
### Changed
|
||||
|
||||
- Improved iteration speeds 20-40% by manually indexing rather than using `next()` :scream:
|
||||
|
||||
## [0.1.1] - 2024-05-19
|
||||
|
||||
### Added
|
||||
|
||||
- Added `world:clear(entity)` for removing the components to the corresponding entity
|
||||
- Added Typescript Types
|
||||
|
||||
## [0.1.0] - 2024-05-13
|
||||
|
||||
### Changed
|
||||
|
||||
- Optimized iterator
|
||||
|
||||
## [0.1.0-rc.6] - 2024-05-13
|
||||
|
||||
### Added
|
||||
|
||||
- Added a `jecs.Wildcard` term
|
||||
- it lets you query any partially matched pairs
|
||||
|
||||
## [0.1.0-rc.5] - 2024-05-10
|
||||
|
||||
### Added
|
||||
|
||||
- Added Entity relationships for creating logical connections between entities
|
||||
- Added `world:__iter method` which allows for iteration over the whole world to get every entity
|
||||
- used for reconciling whole worlds such as via replication, saving/loading, etc
|
||||
- Added `world:add(entity, component)` which adds a component to the entity
|
||||
- it is an idempotent function, so calling it twice and in any order should be fine
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed component overriding when in disorder
|
||||
- Previously setting the components in different order results in it overriding component data because it incorrectly mapped the index of the column. So it took the index from the source archetype rather than the destination archetype
|
||||
|
||||
## [0.0.0-prototype.rc.3] - 2024-05-01
|
||||
|
||||
### Added
|
||||
|
||||
- Added observers
|
||||
- Added an arm to query `query:without()` for chaining invariants.
|
||||
|
||||
### Changed
|
||||
|
||||
- Separates ranges for components and entity IDs.
|
||||
|
||||
- IDs created with `world:component()` will promote array lookups rather than map lookups in the `component_index` which is a significant boost
|
||||
|
||||
- No longer caches the column pointers directly and instead the column indices which stay persistent even when data is reallocated during swap-removals
|
||||
- This was an issue with the iterator being invalidated when you move an entity to a different archetype.
|
||||
|
||||
### Fixedhttps://github.com/Ukendio/jecs/releases/tag/v0.0.0-prototype.rc.3
|
||||
|
||||
- Fixed a bug where changing an existing component would be slow because it was always appending changing the row of the entity record
|
||||
- The fix dramatically improves times where it is basically down to just the speed of setting a field in a table
|
||||
|
||||
## [0.0.0-prototype.rc.2] - 2024-04-26
|
||||
|
||||
### Changed
|
||||
|
||||
- Optimized the creation of the query
|
||||
- It will now finds the smallest archetype map to iterate over
|
||||
- Optimized the query iterator
|
||||
|
||||
- It will now populates iterator with columns for faster indexing
|
||||
|
||||
- Renamed the insertion method from world:add to world:set to better reflect what it does.
|
||||
|
||||
## [0.0.0-prototype.rc.2] - 2024-04-23
|
||||
|
||||
- Initial release
|
||||
|
||||
[unreleased]: https://github.com/ukendio/jecs/compare/v0.0.0.0-prototype.rc.2...HEAD
|
||||
[0.2.2]: https://github.com/ukendio/jecs/releases/tag/v0.2.2
|
||||
[0.2.1]: https://github.com/ukendio/jecs/releases/tag/v0.2.1
|
||||
[0.2.0]: https://github.com/ukendio/jecs/releases/tag/v0.2.0
|
||||
[0.1.1]: https://github.com/ukendio/jecs/releases/tag/v0.1.1
|
||||
[0.1.0]: https://github.com/ukendio/jecs/releases/tag/v0.1.0
|
||||
[0.1.0-rc.6]: https://github.com/ukendio/jecs/releases/tag/v0.1.0-rc.6
|
||||
[0.1.0-rc.5]: https://github.com/ukendio/jecs/releases/tag/v0.1.0-rc.5
|
||||
[0.0.0-prototype-rc.3]: https://github.com/ukendio/jecs/releases/tag/v0.0.0-prototype.rc.3
|
||||
[0.0.0-prototype.rc.2]: https://github.com/ukendio/jecs/releases/tag/v0.0.0-prototype.rc.2
|
||||
[0.0.0-prototype-rc.1]: https://github.com/ukendio/jecs/releases/tag/v0.0.0-prototype.rc.1
|
21
jecs/LICENSE
21
jecs/LICENSE
|
@ -1,21 +0,0 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2024 jecs authors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
|
@ -1,64 +0,0 @@
|
|||
<p align="center">
|
||||
<img src="assets/image-5.png" width=35%/>
|
||||
</p>
|
||||
|
||||
[](LICENSE) [](https://wally.run/package/ukendio/jecs)
|
||||
|
||||
Just a stupidly fast Entity Component System
|
||||
|
||||
- [Entity Relationships](https://ajmmertens.medium.com/building-games-in-ecs-with-entity-relationships-657275ba2c6c) as first class citizens
|
||||
- Iterate 800,000 entities at 60 frames per second
|
||||
- Type-safe [Luau](https://luau-lang.org/) API
|
||||
- Zero-dependency package
|
||||
- Optimized for column-major operations
|
||||
- Cache friendly [archetype/SoA](https://ajmmertens.medium.com/building-an-ecs-2-archetypes-and-vectorization-fe21690805f9) storage
|
||||
- Rigorously [unit tested](https://github.com/Ukendio/jecs/actions/workflows/ci.yaml) for stability
|
||||
|
||||
### Example
|
||||
|
||||
```lua
|
||||
local world = jecs.World.new()
|
||||
local pair = jecs.pair
|
||||
|
||||
-- These components and functions are actually already builtin
|
||||
-- but have been illustrated for demonstration purposes
|
||||
local ChildOf = world:component()
|
||||
local Name = world:component()
|
||||
|
||||
local function parent(entity)
|
||||
return world:target(entity, ChildOf)
|
||||
end
|
||||
local function getName(entity)
|
||||
return world:get(entity, Name)
|
||||
end
|
||||
|
||||
local alice = world:entity()
|
||||
world:set(alice, Name, "alice")
|
||||
|
||||
local bob = world:entity()
|
||||
world:add(bob, pair(ChildOf, alice))
|
||||
world:set(bob, Name, "bob")
|
||||
|
||||
local sara = world:entity()
|
||||
world:add(sara, pair(ChildOf, alice))
|
||||
world:set(sara, Name, "sara")
|
||||
|
||||
print(getName(parent(sara)))
|
||||
|
||||
for e in world:query(pair(ChildOf, alice)) do
|
||||
print(getName(e), "is the child of alice")
|
||||
end
|
||||
|
||||
-- Output
|
||||
-- "alice"
|
||||
-- bob is the child of alice
|
||||
-- sara is the child of alice
|
||||
```
|
||||
|
||||
21,000 entities 125 archetypes 4 random components queried.
|
||||

|
||||
Can be found under /benches/visual/query.luau
|
||||
|
||||
Inserting 8 components to an entity and updating them over 50 times.
|
||||

|
||||
Can be found under /benches/visual/insertions.luau
|
|
@ -1,2 +0,0 @@
|
|||
modified = ["README.md", "LICENSE", ".luaurc", "CHANGELOG.md", "jecs.luau"]
|
||||
version = "0.5.5-nightly.20250302T175658Z"
|
|
@ -1 +0,0 @@
|
|||
{"name":"jecs-nightly","tree":{"$path":"jecs.luau"}}
|
2564
jecs/jecs.luau
2564
jecs/jecs.luau
File diff suppressed because it is too large
Load diff
|
@ -1,13 +0,0 @@
|
|||
authors = ["jecs authors"]
|
||||
includes = ["init.luau", "pesde.toml", "README.md", "CHANGELOG.md", "LICENSE", ".luaurc"]
|
||||
license = "MIT"
|
||||
name = "marked/jecs_nightly"
|
||||
repository = "https://git.devmarked.win/jecs-nightly"
|
||||
version = "0.5.5-nightly.20250302T175658Z"
|
||||
|
||||
[indices]
|
||||
default = "https://github.com/daimond113/pesde-index"
|
||||
|
||||
[target]
|
||||
environment = "luau"
|
||||
lib = "jecs.luau"
|
|
@ -1,2 +0,0 @@
|
|||
passed = true
|
||||
timestamp = "20250302T175659Z"
|
|
@ -1,114 +0,0 @@
|
|||
[38;1m8.2[0m [33;1mus[0m [38;1m 3[0m [33;1mkB[0m[38;1m│[0m [38;1mdelete children of entity[0m
|
||||
[38;1m9.4[0m [33;1mus[0m [38;1m 2[0m [33;1mkB[0m[38;1m│[0m [38;1mremove friends of entity[0m
|
||||
[38;1m328[0m [32;1mns[0m [38;1m 0[0m [32;1m B[0m[38;1m│[0m [38;1msimple deletion of entity[0m
|
||||
removing
|
||||
[37;1marchetype[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1m[0m
|
||||
|
||||
[37;1mworld:cleanup()[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1m[0m
|
||||
|
||||
[37;1mworld:entity()[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1munique IDs[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mgenerations[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mpairs[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mRecycling[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mRecycling max generation[0m
|
||||
|
||||
[37;1mworld:set()[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1marchetype move[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mpairs[0m
|
||||
|
||||
[37;1mworld:remove()[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mshould allow remove a component that doesn't exist on entity[0m
|
||||
|
||||
[37;1mworld:add()[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1midempotent[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1marchetype move[0m
|
||||
|
||||
[37;1mworld:query()[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mcached[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mmultiple iter[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mtag[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mpairs[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mquery single component[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mquery missing component[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mquery more than 8 components[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mshould be able to get next results[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mshould query all matching entities when irrelevant component is removed[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mshould query all entities without B[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mshould allow querying for relations[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mshould allow wildcards in queries[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mshould match against multiple pairs[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mshould only relate alive entities[0m
|
||||
[38;5;208mNONE[0m[38;1m│[0m [38;1mshould error when setting invalid pair[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mshould find target for ChildOf[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mdespawning while iterating[0m
|
||||
[38;5;208mNONE[0m[38;1m│[0m [38;1miterator invalidation[0m
|
||||
[33;1mSKIP[0m[38;1m│[0m [38;1madding[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mspawning[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mshould not find any entities[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mwithout[0m
|
||||
|
||||
[37;1mworld:each[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1m[0m
|
||||
|
||||
[37;1mworld:children[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1m[0m
|
||||
|
||||
[37;1mworld:clear()[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mshould remove its components[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mshould move last record[0m
|
||||
|
||||
[37;1mworld:has()[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mshould find Tag on entity[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mshould return false when missing one tag[0m
|
||||
|
||||
[37;1mworld:component()[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1monly components should have EcsComponent trait[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mtag[0m
|
||||
|
||||
[37;1mworld:delete[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1minvoke OnRemove hooks[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mdelete recycled entity id used as component[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mbug: Empty entity does not respect cleanup policy[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mshould allow deleting components[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mdelete entities using another Entity as component with Delete cleanup action[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mdelete children[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mfast delete[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mcycle[0m
|
||||
|
||||
[37;1mworld:target[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mnth index[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1minfer index when unspecified[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mloop until no target[0m
|
||||
|
||||
[37;1mworld:contains[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1m[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mshould not exist after delete[0m
|
||||
|
||||
[37;1mHooks[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mOnAdd[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mOnSet[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1mOnRemove[0m
|
||||
|
||||
[37;1mchange tracking[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1m#1[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1m#2[0m
|
||||
|
||||
[37;1mrepro[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1m#1[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1m#2[0m
|
||||
|
||||
[37;1mwildcard query[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1m#1[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1m#2[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1m#3[0m
|
||||
|
||||
[37;1mworld:delete() invokes OnRemove hook[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1m#1[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1m#2[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1m#3[0m
|
||||
|
||||
[38;1m68/68 test cases passed in 31.100 ms.[0m
|
||||
[32;1m0 fails[0m
|
|
@ -1,8 +0,0 @@
|
|||
[package]
|
||||
exclude = ["**"]
|
||||
include = ["default.project.json", "jecs.luau", "wally.toml", "README.md", "CHANGELOG.md", "LICENSE"]
|
||||
license = "MIT"
|
||||
name = "mark-marks/jecs-nightly"
|
||||
realm = "shared"
|
||||
registry = "https://github.com/UpliftGames/wally-index"
|
||||
version = "0.5.5-nightly.20250302T175658Z"
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in a new issue