Skip to content

Commit

Permalink
refactor: add monorepo scripts (node / deno)
Browse files Browse the repository at this point in the history
  • Loading branch information
thejackshelton committed Mar 31, 2024
1 parent c9673f2 commit 673dc74
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,10 @@ export const MySlotComp = component$<{ initial: number }>((props) => {

Default slots work as expected in their Qwik City counterpart.

## Starter Kits

- [Siguici's](https://github.com/siguici) [@qwikdev/astro + Deno](https://github.com/siguici/qwik-astro-deno) starter kit

## Community Guides

- [Paul Scanlon](https://www.paulie.dev/) shows a hands-on look at [using Qwik in Astro over React and Vanilla JS](https://thenewstack.io/how-quiks-astro-integration-beats-both-react-and-vanilla-js/).
Expand Down
4 changes: 4 additions & 0 deletions libs/qwikdev-astro/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,10 @@ export const MySlotComp = component$<{ initial: number }>((props) => {

Default slots work as expected in their Qwik City counterpart.

## Starter Kits

- [Siguici's](https://github.com/siguici) [@qwikdev/astro + Deno](https://github.com/siguici/qwik-astro-deno) starter kit

## Community Guides

- [Paul Scanlon](https://www.paulie.dev/) shows a hands-on look at [using Qwik in Astro over React and Vanilla JS](https://thenewstack.io/how-quiks-astro-integration-beats-both-react-and-vanilla-js/).
Expand Down
11 changes: 8 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,21 @@
"name": "qwikdev-astro",
"version": "0.0.0",
"scripts": {
"dev": "pnpm -C ./apps/node-demo dev",
"build": "pnpm -C ./apps/node-demo build",
"preview": "pnpm -C ./apps/node-demo preview",
"check": "biome ci .",
"check.format": "biome format .",
"check.lint": "biome check .",
"fix": "pnpm lint && pnpm format",
"format": "biome format --write .",
"lint": "biome check --apply-unsafe .",
"postinstall": "lefthook install",
"dev": "pnpm -C ./apps/node-demo run dev",
"build": "pnpm -C ./apps/node-demo run build",
"release": "changeset publish"
"changeset": "changeset",
"release": "changeset publish",
"deno.dev": "pnpm -C ./apps/deno-demo dev",
"deno.build": "pnpm -C ./apps/deno-demo build",
"deno.preview": "pnpm -C ./apps/deno-demo preview"
},
"devDependencies": {
"@biomejs/biome": "1.6.1",
Expand Down

0 comments on commit 673dc74

Please sign in to comment.