From 9807f7ff1a83c00866472a6ebcc446f5e595025c Mon Sep 17 00:00:00 2001 From: lisez Date: Sat, 25 May 2024 00:51:56 +0800 Subject: [PATCH 1/2] fix: fix metadata --- deno.json | 8 +++++--- jsr.json | 4 ++++ 2 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 jsr.json diff --git a/deno.json b/deno.json index 1f62085..f80d55a 100644 --- a/deno.json +++ b/deno.json @@ -11,7 +11,9 @@ "exclude": ["no-explicit-any"] } }, - "imports": { "@deno/dnt": "jsr:@deno/dnt@^0.41.1", "modules/": "./modules/" }, - "exports": "./modules/xemitter.ts", - "exclude": ["node_modules", "dist", ".github", "examples", "tests"] + "imports": { + "@deno/dnt": "jsr:@deno/dnt@^0.41.1", + "modules/": "./modules/" + }, + "exports": "./modules/xemitter.ts" } diff --git a/jsr.json b/jsr.json new file mode 100644 index 0000000..4c3c3ed --- /dev/null +++ b/jsr.json @@ -0,0 +1,4 @@ +{ + "name": "@lisez/xevt", + "exclude": ["node_modules", "dist", ".github", "examples", "tests"] +} From d51220eb4626dd2aefc41a5288a119ef848dfd4f Mon Sep 17 00:00:00 2001 From: lisez Date: Sat, 25 May 2024 00:51:09 +0800 Subject: [PATCH 2/2] chore: ignore push tags --- .github/workflows/test.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6abe79f..b7da349 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,9 +1,12 @@ name: testing on: - - push - - pull_request - + push: + branches: + - "**" + pull_request: + branches: + - "**" jobs: build: runs-on: ubuntu-latest