File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
packages/socket.io-postgres-emitter Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 36
36
- 6379:6379
37
37
38
38
postgres :
39
- image : postgres
39
+ image : postgres:14
40
40
env :
41
41
POSTGRES_PASSWORD : changeit
42
42
options : >-
Original file line number Diff line number Diff line change 14
14
"main" : " ./dist/index.js" ,
15
15
"types" : " ./dist/index.d.ts" ,
16
16
"scripts" : {
17
- "test" : " npm run format:check && tsc && nyc mocha --require ts-node/register --timeout 5000 test/index.ts" ,
17
+ "compile" : " rimraf ./dist && tsc" ,
18
+ "test" : " npm run format:check && npm run compile && nyc mocha --require ts-node/register --timeout 5000 test/index.ts" ,
18
19
"format:check" : " prettier --parser typescript --check 'lib/**/*.ts' 'test/**/*.ts'" ,
19
20
"format:fix" : " prettier --parser typescript --write 'lib/**/*.ts' 'test/**/*.ts'" ,
20
- "prepack" : " tsc "
21
+ "prepack" : " npm run compile "
21
22
},
22
23
"dependencies" : {
23
24
"@msgpack/msgpack" : " ^2.7.0" ,
You can’t perform that action at this time.
0 commit comments