File tree Expand file tree Collapse file tree 4 files changed +10
-4
lines changed
Expand file tree Collapse file tree 4 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 99
1010 steps :
1111 - uses : actions/checkout@v2
12- - uses : preactjs/compressed-size-action@v1
12+ - uses : preactjs/compressed-size-action@v2
1313 with :
1414 repo-token : " ${{ secrets.GITHUB_TOKEN }}"
Original file line number Diff line number Diff line change 11name : CI
22
3- on : [push]
3+ on :
4+ pull_request :
5+ branches :
6+ - ' **'
7+ push :
8+ branches :
9+ - master
410
511jobs :
612 build :
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ const emitter: mitt.Emitter = mitt();
115115
116116Mitt: Tiny (~ 200b) functional event emitter / pubsub.
117117
118- Returns ** Mitt**
118+ Returns ** Mitt**
119119
120120### emit
121121
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ export type EventType = string | symbol;
33// An event handler can take an optional event argument
44// and should not return a value
55export type Handler = ( event ?: any ) => void ;
6- export type WildcardHandler = ( type : EventType , event ?: any ) => void
6+ export type WildcardHandler = ( type : EventType , event ?: any ) => void
77
88// An array of all currently registered event handlers for a type
99export type EventHandlerList = Array < Handler > ;
You can’t perform that action at this time.
0 commit comments