create-qwik
Advanced tools
Comparing version 0.0.21 to 0.0.22
{ | ||
"name": "create-qwik", | ||
"version": "0.0.21", | ||
"version": "0.0.22", | ||
"description": "Interactive CLI and API for generating Qwik projects.", | ||
@@ -5,0 +5,0 @@ "bin": "create-qwik", |
@@ -16,6 +16,6 @@ { | ||
"devDependencies": { | ||
"@builder.io/qwik": "0.0.21", | ||
"@types/node": "17.0.34", | ||
"@builder.io/qwik": "0.0.22", | ||
"@types/node": "latest", | ||
"node-fetch": "2.6.7", | ||
"typescript": "4.6.4", | ||
"typescript": "4.7.2", | ||
"vite": "2.9.9" | ||
@@ -22,0 +22,0 @@ }, |
@@ -12,4 +12,4 @@ { | ||
"devDependencies": { | ||
"@builder.io/qwik-city": "0.0.10" | ||
"@builder.io/qwik-city": "0.0.11" | ||
} | ||
} |
@@ -8,4 +8,2 @@ import { defineConfig } from 'vite'; | ||
export default defineConfig(() => { | ||
const pagesDir = resolve('pages'); | ||
return { | ||
@@ -15,3 +13,3 @@ /* VITE_CONFIG */ | ||
qwikCity({ | ||
pagesDir, | ||
pagesDir: resolve('src', 'pages'), | ||
layouts: { | ||
@@ -18,0 +16,0 @@ default: resolve('src', 'layouts', 'default', 'default.tsx'), |
{ | ||
"description": "Blank Qwik starter app with Partytown.", | ||
"dependencies": { | ||
"@builder.io/partytown": "^0.3.1" | ||
"@builder.io/partytown": "latest" | ||
}, | ||
@@ -6,0 +6,0 @@ "qwik": { |
@@ -10,2 +10,3 @@ //////////////////////////////////////////////////////////////////////// | ||
export interface TodoItem { | ||
id: string; | ||
completed: boolean; | ||
@@ -18,2 +19,3 @@ title: string; | ||
items: TodoItem[]; | ||
nextItemId: number; | ||
} | ||
@@ -20,0 +22,0 @@ |
@@ -8,7 +8,7 @@ { | ||
"@types/eslint": "8.4.2", | ||
"@typescript-eslint/eslint-plugin": "5.25.0", | ||
"@typescript-eslint/parser": "5.25.0", | ||
"@typescript-eslint/eslint-plugin": "5.27.0", | ||
"@typescript-eslint/parser": "5.27.0", | ||
"eslint-plugin-qwik": "latest", | ||
"eslint": "8.15.0" | ||
"eslint": "8.16.0" | ||
} | ||
} |
@@ -5,5 +5,5 @@ { | ||
"autoprefixer": "10.4.7", | ||
"postcss": "8.4.13", | ||
"postcss": "8.4.14", | ||
"tailwindcss": "3.0.24" | ||
} | ||
} |
@@ -8,3 +8,3 @@ { | ||
"devDependencies": { | ||
"@cloudflare/workers-types": "3.9.0", | ||
"@cloudflare/workers-types": "3.11.0", | ||
"wrangler": "beta" | ||
@@ -11,0 +11,0 @@ }, |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
248021
1730