Skip to content

Commit

Permalink
chore: update docs (QwikDev#2553)
Browse files Browse the repository at this point in the history
* ♨️

* 💪
  • Loading branch information
manucorporat authored Jan 5, 2023
1 parent f2c7062 commit 943fe19
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 20 deletions.
4 changes: 2 additions & 2 deletions packages/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"@algolia/autocomplete-shared": "1.7.3",
"@algolia/client-search": "4.14.2",
"@builder.io/partytown": "0.7.3",
"@builder.io/qwik": "0.16.1",
"@builder.io/qwik-city": "0.1.0-beta6",
"@builder.io/qwik": "0.16.2",
"@builder.io/qwik-city": "0.1.0-beta8",
"@builder.io/sdk-qwik": "0.0.37",
"@docsearch/css": "3.3.0",
"@types/node-fetch": "2.6.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/qwik-city/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@builder.io/qwik-city",
"version": "0.1.0-beta6",
"version": "0.1.0-beta8",
"description": "The meta-framework for Qwik.",
"main": "./lib/index.qwik.mjs",
"qwik": "./lib/index.qwik.mjs",
Expand Down Expand Up @@ -103,7 +103,7 @@
"yaml": "2.2.1"
},
"peerDependencies": {
"@builder.io/qwik": ">=0.16.0"
"@builder.io/qwik": ">=0.16.2"
},
"license": "MIT",
"homepage": "https://qwik.builder.io/",
Expand Down
4 changes: 2 additions & 2 deletions packages/qwik-city/static/node/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ export async function generate(opts: StaticGenerateOptions) {

if (!isMainThread && workerData) {
(async () => {
if (typeof TextEncoderStream === 'undefined') {
if (typeof globalThis.TextEncoderStream === 'undefined') {
globalThis.TextEncoderStream = TextEncoderStream;
globalThis.TextDecoderStream = TextDecoderStream;
}
if (typeof WritableStream === 'undefined') {
if (typeof globalThis.WritableStream === 'undefined') {
globalThis.WritableStream = WritableStream as any;
globalThis.ReadableStream = ReadableStream as any;
}
Expand Down
20 changes: 6 additions & 14 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 943fe19

Please sign in to comment.