File tree Expand file tree Collapse file tree 8 files changed +35
-447
lines changed
Expand file tree Collapse file tree 8 files changed +35
-447
lines changed Original file line number Diff line number Diff line change 1+ .idea /
12/.bundle /
23/doc /
34/log /* .log
Original file line number Diff line number Diff line change 1- v18.14 .1
1+ v24.11 .1
Original file line number Diff line number Diff line change 11ruby 3.2.0
2- nodejs 18.14 .1
2+ nodejs 24.11 .1
33yarn 1.22.19
Original file line number Diff line number Diff line change 1616 "@changesets/cli" : " ^2.27.7"
1717 },
1818 "engines" : {
19- "node" : " >= 16 " ,
19+ "node" : " >= 24.11.1 " ,
2020 "yarn" : " >= 1"
21+ },
22+ "packageManager" : " yarn@1.22.19" ,
23+ "resolutions" : {
24+ "typescript" : " ^5.7.2"
2125 }
2226}
Original file line number Diff line number Diff line change 88 "license" : " MIT" ,
99 "private" : true ,
1010 "dependencies" : {
11- "@typescript-eslint/eslint-plugin" : " ^8.32.1 " ,
12- "@typescript-eslint/parser" : " ^8.3 .0" ,
13- "eslint" : " ^9.28 .0" ,
14- "eslint-config-prettier" : " ^9.1 .0"
11+ "@typescript-eslint/eslint-plugin" : " ^2.12.0 " ,
12+ "@typescript-eslint/parser" : " ^2.12 .0" ,
13+ "eslint" : " ^6.1 .0" ,
14+ "eslint-config-prettier" : " ^6.0 .0"
1515 },
1616 "engines" : {
1717 "node" : " >= 18.14.1" ,
Original file line number Diff line number Diff line change @@ -219,7 +219,10 @@ export class WebsocketProvider {
219219 this . doc . off ( 'update' , this . updateHandler ) ;
220220 }
221221
222- private send ( buffer : Uint8Array , { whisper = false } : { whisper ?: boolean } = { } ) {
222+ private send (
223+ buffer : Uint8Array ,
224+ { whisper = false } : { whisper ?: boolean } = { }
225+ ) {
223226 const update = encodeBinaryToBase64 ( buffer ) ;
224227
225228 if ( whisper && hasWhisper ( this . channel ) ) {
@@ -372,10 +375,12 @@ function decodeBase64ToBinary(update: string) {
372375 return Uint8Array . from ( atob ( update ) , c => c . charCodeAt ( 0 ) ) ;
373376}
374377
375- function hasWhisper ( channel : ActionCable . Channel | undefined ) : channel is ChannelWithWhisper {
378+ function hasWhisper (
379+ channel : ActionCable . Channel | undefined
380+ ) : channel is ChannelWithWhisper {
376381 return (
377382 channel !== undefined &&
378383 'whisper' in channel &&
379384 typeof channel . whisper === 'function'
380385 ) ;
381- }
386+ }
Original file line number Diff line number Diff line change 11{
22 "$schema" : " https://turbo.build/schema.json" ,
3- "pipeline " : {
3+ "tasks " : {
44 "build" : {
55 "outputs" : [" dist/**" ]
66 },
You can’t perform that action at this time.
0 commit comments