Skip to content

Commit

Permalink
chore: fix jsr config include/exclude
Browse files Browse the repository at this point in the history
  • Loading branch information
erictaylor committed Apr 1, 2024
1 parent 4d0f0b1 commit 0ba71a8
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions jsr.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@
"version": "1.0.0",
"exports": "./src/index.ts",
"publish": {
"exclude": [
// Add back the "dist" folder that is gitignored
"!dist",
"**/__tests__/**"
"exclude": ["**/__tests__/**"],
"include": [
"LICENSE.md",
"README.md",
"package.json",
"src/**/*.ts",
"src/**/*.tsx",
"dist"
]
}
}

0 comments on commit 0ba71a8

Please sign in to comment.