Skip to content

Commit

Permalink
Fix: don't publish src directory in tarball
Browse files Browse the repository at this point in the history
Closes #80
  • Loading branch information
Skye-31 committed Sep 1, 2024
1 parent d39096f commit aeecf68
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/gorgeous-seahorses-smash.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"d1-orm": patch
---

Fix: Don't publish the `src` directory in the package
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@
"type": "module",
"main": "lib/index.js",
"files": [
"lib",
"src"
"lib"
],
"scripts": {
"build": "tsc",
Expand All @@ -34,8 +33,8 @@
"check:format": "prettier . --check --ignore-unknown --end-of-line lf",
"check:lint": "eslint src/*.ts --cache --cache-strategy content --max-warnings=0",
"docs:watch": "typedoc --watch",
"format": "prettier . --write --ignore-unknown --end-of-line lf",
"lint:fix": "eslint src/*.ts --fix",
"prettify": "prettier . --write --ignore-unknown --end-of-line lf",
"prepublish": "tsc",
"serve": "npm run build:docs && wrangler pages dev docs",
"test": "vitest run",
Expand Down

0 comments on commit aeecf68

Please sign in to comment.