refactor: fix type
This commit is contained in:
		
							parent
							
								
									a671f9102d
								
							
						
					
					
						commit
						31b216f667
					
				
					 7 changed files with 22 additions and 16 deletions
				
			
		|  | @ -14,6 +14,7 @@ | |||
| 		"lodash": "^4.17.21" | ||||
| 	}, | ||||
| 	"dependencies": { | ||||
| 		"@bull-board/koa": "3.10.3", | ||||
| 		"@discordapp/twemoji": "13.1.1", | ||||
| 		"@elastic/elasticsearch": "7.11.0", | ||||
| 		"@koa/cors": "3.1.0", | ||||
|  | @ -23,7 +24,6 @@ | |||
| 		"@syuilo/aiscript": "0.11.1", | ||||
| 		"@typescript-eslint/eslint-plugin": "5.18.0", | ||||
| 		"@typescript-eslint/parser": "5.18.0", | ||||
| 		"@bull-board/koa": "3.10.3", | ||||
| 		"abort-controller": "3.0.0", | ||||
| 		"ajv": "8.11.0", | ||||
| 		"archiver": "5.3.0", | ||||
|  | @ -125,10 +125,11 @@ | |||
| 		"web-push": "3.4.5", | ||||
| 		"websocket": "1.0.34", | ||||
| 		"ws": "8.5.0", | ||||
| 		"xev": "2.0.1" | ||||
| 		"xev": "3.0.2" | ||||
| 	}, | ||||
| 	"devDependencies": { | ||||
| 		"@redocly/openapi-core": "1.0.0-beta.93", | ||||
| 		"@types/semver": "7.3.9", | ||||
| 		"@types/bcryptjs": "2.4.2", | ||||
| 		"@types/bull": "3.15.8", | ||||
| 		"@types/cbor": "6.0.0", | ||||
|  |  | |||
|  | @ -1,6 +1,6 @@ | |||
| import cluster from 'node:cluster'; | ||||
| import chalk from 'chalk'; | ||||
| import { default as Xev } from 'xev'; | ||||
| import Xev from 'xev'; | ||||
| 
 | ||||
| import Logger from '@/services/logger.js'; | ||||
| import { envOption } from '../env.js'; | ||||
|  | @ -12,7 +12,7 @@ import { workerMain } from './worker.js'; | |||
| 
 | ||||
| const logger = new Logger('core', 'cyan'); | ||||
| const clusterLogger = logger.createSubLogger('cluster', 'orange', false); | ||||
| const ev = new Xev.default(); | ||||
| const ev = new Xev(); | ||||
| 
 | ||||
| /** | ||||
|  * Init process | ||||
|  |  | |||
|  | @ -1,7 +1,7 @@ | |||
| import { default as Xev } from 'xev'; | ||||
| import Xev from 'xev'; | ||||
| import { deliverQueue, inboxQueue } from '../queue/queues.js'; | ||||
| 
 | ||||
| const ev = new Xev.default(); | ||||
| const ev = new Xev(); | ||||
| 
 | ||||
| const interval = 10000; | ||||
| 
 | ||||
|  |  | |||
|  | @ -1,8 +1,8 @@ | |||
| import si from 'systeminformation'; | ||||
| import { default as Xev } from 'xev'; | ||||
| import Xev from 'xev'; | ||||
| import * as osUtils from 'os-utils'; | ||||
| 
 | ||||
| const ev = new Xev.default(); | ||||
| const ev = new Xev(); | ||||
| 
 | ||||
| const interval = 2000; | ||||
| 
 | ||||
|  |  | |||
|  | @ -1,7 +1,7 @@ | |||
| import { default as Xev } from 'xev'; | ||||
| import Xev from 'xev'; | ||||
| import Channel from '../channel.js'; | ||||
| 
 | ||||
| const ev = new Xev.default(); | ||||
| const ev = new Xev(); | ||||
| 
 | ||||
| export default class extends Channel { | ||||
| 	public readonly chName = 'queueStats'; | ||||
|  |  | |||
|  | @ -1,7 +1,7 @@ | |||
| import { default as Xev } from 'xev'; | ||||
| import Xev from 'xev'; | ||||
| import Channel from '../channel.js'; | ||||
| 
 | ||||
| const ev = new Xev.default(); | ||||
| const ev = new Xev(); | ||||
| 
 | ||||
| export default class extends Channel { | ||||
| 	public readonly chName = 'serverStats'; | ||||
|  |  | |||
|  | @ -777,6 +777,11 @@ | |||
|   dependencies: | ||||
|     htmlparser2 "^6.0.0" | ||||
| 
 | ||||
| "@types/semver@7.3.9": | ||||
|   version "7.3.9" | ||||
|   resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.9.tgz#152c6c20a7688c30b967ec1841d31ace569863fc" | ||||
|   integrity sha512-L/TMpyURfBkf+o/526Zb6kd/tchUP3iBDEPjqjb+U2MAJhVRxxrmr2fwpe08E7QsV7YLcpq0tUaQ9O9x97ZIxQ== | ||||
| 
 | ||||
| "@types/serve-static@*": | ||||
|   version "1.13.3" | ||||
|   resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.3.tgz#eb7e1c41c4468272557e897e9171ded5e2ded9d1" | ||||
|  | @ -7297,10 +7302,10 @@ ws@^8.2.3: | |||
|   resolved "https://registry.yarnpkg.com/ws/-/ws-8.4.2.tgz#18e749868d8439f2268368829042894b6907aa0b" | ||||
|   integrity sha512-Kbk4Nxyq7/ZWqr/tarI9yIt/+iNNFOjBXEWgTb4ydaNHBNGgvf2QHbS9fdfsndfjFlFwEd4Al+mw83YkaD10ZA== | ||||
| 
 | ||||
| xev@2.0.1: | ||||
|   version "2.0.1" | ||||
|   resolved "https://registry.yarnpkg.com/xev/-/xev-2.0.1.tgz#24484173a22115bc8a990ef5d4d5129695b827a7" | ||||
|   integrity sha512-icDf9M67bDge0F2qf02WKZq+s7mMO/SbPv67ZQPym6JThLEOdlWWLdB7VTVgRJp3ekgaiVItCAyH6aoKCPvfIA== | ||||
| xev@3.0.2: | ||||
|   version "3.0.2" | ||||
|   resolved "https://registry.yarnpkg.com/xev/-/xev-3.0.2.tgz#3f4080bd8bed0d3479c674050e3696da98d22a4d" | ||||
|   integrity sha512-8kxuH95iMXzHZj+fwqfA4UrPcYOy6bGIgfWzo9Ji23JoEc30ge/Z++Ubkiuy8c0+M64nXmmxrmJ7C8wnuBhluw== | ||||
| 
 | ||||
| xml-js@^1.6.11: | ||||
|   version "1.6.11" | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue