Fix typings folder

This commit is contained in:
Ukendio 2024-07-07 05:12:14 +02:00
commit cead7ceafe
3 changed files with 8 additions and 10 deletions

View file

@ -10,6 +10,8 @@ The format is based on [Keep a Changelog][kac], and this project adheres to
## [Unreleased] ## [Unreleased]
## [0.2.2] - 2024-07-07
### Added ### Added
- Added `query:replace(function(...T) return ...U end)` for replacing components in place - Added `query:replace(function(...T) return ...U end)` for replacing components in place
@ -105,6 +107,7 @@ The format is based on [Keep a Changelog][kac], and this project adheres to
- Initial release - Initial release
[unreleased]: https://github.com/ukendio/jecs/compare/v0.0.0.0-prototype.rc.2...HEAD [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.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.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.1]: https://github.com/ukendio/jecs/releases/tag/v0.1.1

View file

@ -2,16 +2,11 @@
"name": "@rbxts/jecs", "name": "@rbxts/jecs",
"version": "0.2.3", "version": "0.2.3",
"description": "Stupidly fast Entity Component System", "description": "Stupidly fast Entity Component System",
"main": "lib/init.lua", "main": "src/init.luau",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/ukendio/jecs.git" "url": "https://github.com/ukendio/jecs.git"
}, },
"scripts": {
"build": "rbxtsc",
"watch": "rbxtsc -w",
"prepublishOnly": "npm run build"
},
"keywords": [], "keywords": [],
"author": "Ukendio", "author": "Ukendio",
"contributors": [ "contributors": [
@ -22,7 +17,7 @@
"license": "MIT", "license": "MIT",
"types": "src/index.d.ts", "types": "src/index.d.ts",
"files": [ "files": [
"lib/" "src/"
], ],
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"

View file

@ -1,8 +1,8 @@
[package] [package]
name = "ukendio/jecs" name = "ukendio/jecs"
version = "0.2.1" version = "0.2.2"
registry = "https://github.com/UpliftGames/wally-index" registry = "https://github.com/UpliftGames/wally-index"
realm = "shared" realm = "shared"
include = ["default.project.json", "src/**", include = ["default.project.json", "src/**",
"src", "wally.toml", "README.md", "CHANGELOG.md"] "src", "wally.toml", "README.md", "CHANGELOG.md"]
exclude = ["**"] exclude = ["**"]