Skip to content

Commit

Permalink
chore: add --unstable-sloppy-imports
Browse files Browse the repository at this point in the history
  • Loading branch information
kravetsone committed May 12, 2024
1 parent e52c171 commit 66af789
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 8 additions & 3 deletions deno.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
}

0 comments on commit 66af789

Please sign in to comment.