From 66af789173ee6ee290cbce13a2f8e1ce236dd524 Mon Sep 17 00:00:00 2001 From: Kravets <57632712+kravetsone@users.noreply.github.com> Date: Sun, 12 May 2024 16:42:48 +0300 Subject: [PATCH] chore: add --unstable-sloppy-imports --- .github/workflows/publish.yml | 2 +- deno.json | 11 ++++++++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index aebd8b0..5fe008c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -36,7 +36,7 @@ jobs: uses: denoland/setup-deno@v1 - name: Publish package to JSR - run: deno publish --allow-dirty + run: deno publish --allow-dirty --unstable-sloppy-imports - name: Install Node uses: actions/setup-node@v4 diff --git a/deno.json b/deno.json index fa9dfbd..7ed7043 100644 --- a/deno.json +++ b/deno.json @@ -1,12 +1,17 @@ { "name": "@gramio/media-cache", - "version": "0.0.9", + "version": "0.0.3", "exports": "./src/index.ts", "publish": { - "include": ["deno.json", "src", "README.md", "tsconfig.json"] + "include": [ + "deno.json", + "src", + "README.md", + "tsconfig.json" + ] }, "imports": { "@gramio/storage": "jsr:@gramio/storage@^0.0.3", "gramio": "jsr:@gramio/core@^0.0.32" } -} +} \ No newline at end of file