Skip to content

Commit

Permalink
fix: Move dependencies from devDependencies for sidecar (#464)
Browse files Browse the repository at this point in the history
This was causing crashes as these dependencies were declared as external
so needs to be installed.
  • Loading branch information
BYK authored Jul 30, 2024
1 parent 6c89a1c commit 9fccaae
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 13 deletions.
8 changes: 8 additions & 0 deletions .changeset/chatty-cobras-end.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
'@spotlightjs/sidecar': patch
'@spotlightjs/astro': patch
'@spotlightjs/electron': patch
'@spotlightjs/spotlight': patch
---

Fix dependency issues with sidecar
9 changes: 5 additions & 4 deletions packages/sidecar/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,14 @@
"import": "./src/run.js"
}
},
"dependencies": {},
"dependencies": {
"launch-editor": "^2.8.0",
"source-map": "^0.7.4",
"kleur": "^4.1.5"
},
"devDependencies": {
"@spotlightjs/tsconfig": "workspace:*",
"launch-editor": "^2.8.0",
"@types/node": "^18",
"kleur": "^4.1.5",
"source-map": "^0.7.4",
"typescript": "^5.0.2",
"vite": "^4.5.3"
},
Expand Down
20 changes: 11 additions & 9 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9fccaae

Please sign in to comment.