chore: tidy

This commit is contained in:
cha0s 2024-07-21 03:01:12 -05:00
parent a27f79dc33
commit 8be6c23711
3 changed files with 6 additions and 6 deletions

View File

@ -1,10 +1,10 @@
import EntityFactory from './entity-factory.js';
import {Encoder, Decoder} from '@msgpack/msgpack';
import {LRUCache} from 'lru-cache';
import Script from '@/util/script.js';
import EntityFactory from './entity-factory.js';
const cache = new LRUCache({
max: 128,
});

View File

@ -1,7 +1,7 @@
import Ecs from '@/ecs/ecs.js';
import {LRUCache} from 'lru-cache';
import Ecs from '@/ecs/ecs.js';
const cache = new LRUCache({
max: 128,
});

View File

@ -1,3 +1,5 @@
import {LRUCache} from 'lru-cache';
import Ecs from '@/ecs/ecs.js';
import {decode, encode} from '@/net/packets/index.js';
import {
@ -12,8 +14,6 @@ import createHomestead from './create/homestead.js';
import createHouse from './create/house.js';
import createPlayer from './create/player.js';
import {LRUCache} from 'lru-cache';
const cache = new LRUCache({
max: 128,
});