mirror of
https://github.com/Ukendio/jecs.git
synced 2025-04-25 01:20:04 +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()
|
||||||
print(testkit.color.white(title))
|
print(testkit.color.white(title))
|
||||||
end
|
end
|
||||||
|
local jecs = require("../src/init")
|
||||||
local jecs = require("../lib/init")
|
|
||||||
local mirror = require("../mirror/init")
|
local mirror = require("../mirror/init")
|
||||||
|
|
||||||
type i53 = number
|
type i53 = number
|
||||||
|
|
|
@ -35,7 +35,7 @@ local color = {
|
||||||
end,
|
end,
|
||||||
|
|
||||||
gray = function(s: string): string
|
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,
|
end,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
local jecs = require("../lib/init")
|
local jecs = require("@jecs")
|
||||||
local testkit = require("../testkit")
|
local testkit = require("@testkit")
|
||||||
local __ = jecs.Wildcard
|
local __ = jecs.Wildcard
|
||||||
local ECS_ID, ECS_GENERATION = jecs.ECS_ID, jecs.ECS_GENERATION
|
local ECS_ID, ECS_GENERATION = jecs.ECS_ID, jecs.ECS_GENERATION
|
||||||
local ECS_GENERATION_INC = jecs.ECS_GENERATION_INC
|
local ECS_GENERATION_INC = jecs.ECS_GENERATION_INC
|
||||||
|
|
Loading…
Reference in a new issue