From 39964ce5f546309d1b7807b2d0f038885ed9dcc3 Mon Sep 17 00:00:00 2001 From: Mathias Bynens Date: Thu, 25 Jun 2020 15:29:24 +0200 Subject: Remove trailing space (#108) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b6a8022..0796e5f 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ const emitter: mitt.Emitter = mitt(); Mitt: Tiny (~200b) functional event emitter / pubsub. -Returns **Mitt** +Returns **Mitt** ### on -- cgit v1.2.3 From 7d25805889ccda393e622d3732cc2dc287dc3c15 Mon Sep 17 00:00:00 2001 From: Jason Miller Date: Thu, 25 Jun 2020 10:18:18 -0400 Subject: run on push + PR --- .github/workflows/main.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9d3aacf..b758474 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,6 +1,12 @@ name: CI -on: [push] +on: + pull_request: + branches: + - '**' + push: + branches: + - master jobs: build: -- cgit v1.2.3 From 1c26402ff5841dba6b353a6c4e17decd09dccf06 Mon Sep 17 00:00:00 2001 From: Jay Linski Date: Thu, 9 Jul 2020 20:51:56 +0200 Subject: Add missing space (#103) Co-authored-by: Jason Miller --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index cfb1cf3..e640292 100644 --- a/src/index.ts +++ b/src/index.ts @@ -3,7 +3,7 @@ export type EventType = string | symbol; // An event handler can take an optional event argument // and should not return a value export type Handler = (event?: any) => void; -export type WildcardHandler= (type: EventType, event?: any) => void +export type WildcardHandler = (type: EventType, event?: any) => void // An array of all currently registered event handlers for a type export type EventHandlerList = Array; -- cgit v1.2.3 From 244cac2aa3d6831774129d6dc4942465dcef8099 Mon Sep 17 00:00:00 2001 From: Jason Miller Date: Thu, 9 Jul 2020 15:17:50 -0400 Subject: Move to compressed-size-action v2 (#111) --- .github/workflows/compressed-size.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/compressed-size.yml b/.github/workflows/compressed-size.yml index d346ef8..ed9f872 100644 --- a/.github/workflows/compressed-size.yml +++ b/.github/workflows/compressed-size.yml @@ -9,6 +9,6 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: preactjs/compressed-size-action@v1 + - uses: preactjs/compressed-size-action@v2 with: repo-token: "${{ secrets.GITHUB_TOKEN }}" -- cgit v1.2.3