create-qwik 0.0.41 → 0.0.42

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/create-qwik CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  "use strict";/**
3
3
  * @license
4
- * create-qwik
4
+ * create-qwik 0.0.42-dev20220810113649
5
5
  * Copyright Builder.io, Inc. All Rights Reserved.
6
6
  * Use of this source code is governed by an MIT-style license that can be
7
7
  * found in the LICENSE file at https://github.com/BuilderIO/qwik/blob/main/LICENSE
package/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";/**
2
2
  * @license
3
- * create-qwik
3
+ * create-qwik 0.0.42-dev20220810113649
4
4
  * Copyright Builder.io, Inc. All Rights Reserved.
5
5
  * Use of this source code is governed by an MIT-style license that can be
6
6
  * found in the LICENSE file at https://github.com/BuilderIO/qwik/blob/main/LICENSE
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-qwik",
3
- "version": "0.0.41",
3
+ "version": "0.0.42",
4
4
  "description": "Interactive CLI and API for generating Qwik projects.",
5
5
  "bin": "create-qwik",
6
6
  "main": "index.js",
@@ -15,12 +15,12 @@
15
15
  "typecheck": "tsc --incremental --noEmit"
16
16
  },
17
17
  "devDependencies": {
18
- "@builder.io/qwik": "0.0.41",
18
+ "@builder.io/qwik": "0.0.42",
19
19
  "@types/eslint": "8.4.5",
20
20
  "@types/node": "latest",
21
21
  "@typescript-eslint/eslint-plugin": "5.30.7",
22
22
  "@typescript-eslint/parser": "5.30.7",
23
- "eslint-plugin-qwik": "0.0.41",
23
+ "eslint-plugin-qwik": "0.0.42",
24
24
  "eslint": "8.20.0",
25
25
  "node-fetch": "3.2.9",
26
26
  "typescript": "4.7.4",
@@ -14,7 +14,7 @@
14
14
  },
15
15
  "type": "module",
16
16
  "devDependencies": {
17
- "@builder.io/qwik-city": "0.0.30",
17
+ "@builder.io/qwik-city": "0.0.33",
18
18
  "vite-tsconfig-paths": "3.5.0"
19
19
  }
20
20
  }
@@ -1,5 +1,5 @@
1
- import render from './entry.ssr';
2
1
  import { qwikCity } from '@builder.io/qwik-city/middleware/cloudflare-pages';
2
+ import render from './entry.ssr';
3
3
 
4
4
  const qwikCityMiddleware = qwikCity(render);
5
5
 
@@ -1,7 +1,7 @@
1
+ import { qwikCity } from '@builder.io/qwik-city/middleware/express';
1
2
  import express from 'express';
2
3
  import { fileURLToPath } from 'url';
3
4
  import { join } from 'path';
4
- import { qwikCity } from '@builder.io/qwik-city/middleware/express';
5
5
  import render from './entry.ssr';
6
6
 
7
7
  // directories where the static assets are located
@@ -1,5 +1,5 @@
1
- import render from './entry.ssr';
2
1
  import { qwikCity } from '@builder.io/qwik-city/middleware/netlify-edge';
2
+ import render from './entry.ssr';
3
3
 
4
4
  const qwikCityHandler = qwikCity(render);
5
5