mirror of
https://github.com/Ukendio/jecs.git
synced 2025-04-24 17:10:03 +00:00
Add luaurc
This commit is contained in:
parent
c0e73273d1
commit
60c6177815
4 changed files with 30 additions and 25 deletions
6
.luaurc
Normal file
6
.luaurc
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"aliases": {
|
||||
"jecs": "C:/Users/Marcus/Documents/packages/jecs/src",
|
||||
"testkit": "C:/Users/Marcus/Documents/packages/jecs/testkit"
|
||||
}
|
||||
}
|
|
@ -7,8 +7,7 @@ local function TITLE(title: string)
|
|||
print()
|
||||
print(testkit.color.white(title))
|
||||
end
|
||||
|
||||
local jecs = require("../lib/init")
|
||||
local jecs = require("../src/init")
|
||||
local mirror = require("../mirror/init")
|
||||
|
||||
type i53 = number
|
||||
|
|
|
@ -35,7 +35,7 @@ local color = {
|
|||
end,
|
||||
|
||||
gray = function(s: string): string
|
||||
return if disable_ansi then s else `\27[30;1m{s}\27[0m`
|
||||
return if disable_ansi then s else `\27[38;1m{s}\27[0m`
|
||||
end,
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
local jecs = require("../lib/init")
|
||||
local testkit = require("../testkit")
|
||||
local jecs = require("@jecs")
|
||||
local testkit = require("@testkit")
|
||||
local __ = jecs.Wildcard
|
||||
local ECS_ID, ECS_GENERATION = jecs.ECS_ID, jecs.ECS_GENERATION
|
||||
local ECS_GENERATION_INC = jecs.ECS_GENERATION_INC
|
||||
|
|
Loading…
Reference in a new issue