-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
314cc9a
commit ef5dd65
Showing
20 changed files
with
185 additions
and
22 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# qwik-monorepo | ||
|
||
## 1.7.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
"name": "@builder.io/qwik-labs", | ||
"description": "Qwik Labs - Where you can try the latest Qwik ideas.", | ||
"version": "0.0.1", | ||
"devDependencies": { | ||
"@builder.io/qwik": "workspace:^", | ||
"@types/eslint": "^8.56.10", | ||
"@types/node": "^20.12.7", | ||
"@typescript-eslint/eslint-plugin": "^7.7.1", | ||
"@typescript-eslint/parser": "^7.7.1", | ||
"eslint": "^8.57.0", | ||
"eslint-plugin-qwik": "workspace:^", | ||
"np": "^10.0.1", | ||
"prettier": "^3.2.5", | ||
"typescript": "5.4.5", | ||
"undici": "*", | ||
"vite": "^5.2.10" | ||
}, | ||
"engines": { | ||
"node": ">=16.8.0 <18.0.0 || >=18.11" | ||
}, | ||
"exports": { | ||
".": { | ||
"types": "./lib/index.d.ts", | ||
"import": "./lib/index.qwik.mjs", | ||
"require": "./lib/index.qwik.cjs" | ||
}, | ||
"./vite": { | ||
"types": "./vite/index.d.ts", | ||
"import": "./vite/index.js", | ||
"require": "./vite/index.cjs" | ||
} | ||
}, | ||
"files": [ | ||
"lib", | ||
"vite" | ||
], | ||
"main": "./lib/index.qwik.mjs", | ||
"private": true, | ||
"qwik": "./lib/index.qwik.mjs", | ||
"scripts": { | ||
"build": "pnpm build.vite && qwik build", | ||
"build.lib": "vite build --mode lib", | ||
"build.vite": "vite -c vite.config-src-vite.mts build", | ||
"dev": "vite --mode ssr", | ||
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force", | ||
"fmt": "prettier --write .", | ||
"fmt.check": "prettier --check .", | ||
"lint": "eslint \"src/**/*.ts*\"", | ||
"qwik": "qwik", | ||
"release": "np", | ||
"start": "vite --open --mode ssr", | ||
"test.unit": "vitest" | ||
}, | ||
"type": "module", | ||
"types": "./lib/index.d.ts" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
{ | ||
"name": "@builder.io/qwik-react", | ||
"description": "QwikReact allows adding React components into existing Qwik application", | ||
"version": "0.5.5", | ||
"bugs": "https://github.com/QwikDev/qwik/issues", | ||
"devDependencies": { | ||
"@builder.io/qwik": "workspace:^", | ||
"@types/react": "^18.2.79", | ||
"@types/react-dom": "^18.2.25", | ||
"react": "18.2.0", | ||
"react-dom": "18.2.0", | ||
"typescript": "5.4.5", | ||
"vite": "^5.2.10" | ||
}, | ||
"engines": { | ||
"node": ">=16.8.0 <18.0.0 || >=18.11" | ||
}, | ||
"exports": { | ||
".": { | ||
"types": "./lib/types/index.qwik.d.ts", | ||
"import": "./lib/index.qwik.mjs", | ||
"require": "./lib/index.qwik.cjs" | ||
}, | ||
"./vite": { | ||
"types": "./lib/types/vite.d.ts", | ||
"import": "./lib/vite.mjs", | ||
"require": "./lib/vite.cjs" | ||
} | ||
}, | ||
"files": [ | ||
"lib", | ||
"vite" | ||
], | ||
"homepage": "https://qwik.dev/", | ||
"license": "MIT", | ||
"main": "./lib/index.qwik.mjs", | ||
"peerDependencies": { | ||
"@builder.io/qwik": "workspace:^", | ||
"@types/react": "^18.2.79", | ||
"@types/react-dom": "^18.2.25", | ||
"react": "18.2.0", | ||
"react-dom": "18.2.0" | ||
}, | ||
"qwik": "./lib/index.qwik.mjs", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/QwikDev/qwik.git", | ||
"directory": "packages/qwik-react" | ||
}, | ||
"scripts": { | ||
"build": "npm run build.lib", | ||
"build.client": "vite build", | ||
"build.lib": "vite build --mode lib", | ||
"build.ssr": "vite build --ssr src/entry.ssr.tsx", | ||
"dev": "vite", | ||
"dev.debug": "node --inspect-brk ../../node_modules/vite/bin/vite.js --mode ssr --force", | ||
"dev.ssr": "vite --mode ssr", | ||
"fmt": "prettier --write .", | ||
"fmt.check": "prettier --check .", | ||
"lint": "eslint \"src/**/*.ts*\"", | ||
"release": "pnpm run -w build.local && pnpm publish", | ||
"start": "npm run dev", | ||
"typecheck": "tsc --noEmit" | ||
}, | ||
"type": "module", | ||
"types": "./lib/types/index.qwik.d.ts" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# create-qwik | ||
|
||
## 1.7.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# eslint-plugin-qwik | ||
|
||
## 1.7.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# @builder.io/qwik-city | ||
|
||
## 1.7.2 | ||
|
||
### Patch Changes | ||
|
||
- During dev mode, qwik-city will no longer serve files from `dist/`, which are very likely to be stale/incorrect. Furthermore, query parameters are taken into account when serving files (like production servers would do). (by [@wmertens](https://github.com/wmertens) in [#6694](https://github.com/QwikDev/qwik/pull/6694)) | ||
|
||
- strip internal search parameters in canonical URLs (by [@wmertens](https://github.com/wmertens) in [#6694](https://github.com/QwikDev/qwik/pull/6694)) | ||
|
||
- Support entry.ts routes in dev mode now that dist/ is no longer served, and special-case `repl-sw.js` in the docs. (by [@wmertens](https://github.com/wmertens) in [#6706](https://github.com/QwikDev/qwik/pull/6706)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# @builder.io/qwik-react | ||
|
||
## 0.5.6 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies []: | ||
- @builder.io/[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"name": "@builder.io/qwik-react/vite", | ||
"version": "0.2.0", | ||
"exports": { | ||
".": { | ||
"import": "../lib/vite.mjs", | ||
"require": "../lib/vite.cjs", | ||
"types": "../lib/types/vite.d.ts" | ||
} | ||
}, | ||
"type": "module", | ||
"main": "../lib/vite.mjs", | ||
"qwik": "../lib/vite.mjs", | ||
"types": "../lib/types/vite.d.ts" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# @builder.io/qwik-worker | ||
|
||
## 0.0.2 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies []: | ||
- @builder.io/[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# @builder.io/qwik | ||
|
||
## 1.7.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters