Skip to content

Commit

Permalink
☕ fix publish files
Browse files Browse the repository at this point in the history
Do not publish unnecessary files:
- Dot files
- Test files
  • Loading branch information
Milly committed Jul 30, 2024
1 parent 59281d5 commit 3901adf
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
"name": "@denops/core",
"version": "0.0.0",
"exports": "./mod.ts",
"publish": {
"include": [
"**/*.ts",
"README.md",
"LICENSE"
],
"exclude": [
"**/*_test.ts",
".*"
]
},
"tasks": {
"check": "deno check **/*.ts",
"test": "deno test -A --parallel --shuffle --doc",
Expand Down

0 comments on commit 3901adf

Please sign in to comment.