Skip to content

Commit

Permalink
fix(astro): don't bundle astro (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
QuiiBz committed Aug 21, 2022
1 parent c0c85fb commit fd69b71
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/honest-icons-worry.md
@@ -0,0 +1,5 @@
---
'@lagon/astro': patch
---

Don't bundle astro
4 changes: 2 additions & 2 deletions packages/astro/package.json
Expand Up @@ -10,8 +10,8 @@
"./package.json": "./package.json"
},
"scripts": {
"watch": "tsup src/index.ts src/server.ts --format=esm --watch",
"build": "tsup src/index.ts src/server.ts --format=esm ",
"watch": "tsup src/index.ts src/server.ts --format=esm --external astro --watch",
"build": "tsup src/index.ts src/server.ts --format=esm --external astro",
"lint": "eslint --cache --ignore-pattern dist .",
"typecheck": "tsc --noEmit"
},
Expand Down

0 comments on commit fd69b71

Please sign in to comment.