@qwikdev/astro
Advanced tools
Comparing version
@@ -160,5 +160,13 @@ import { qwikVite } from "@builder.io/qwik/optimizer"; | ||
let importFound = false; | ||
let builderFound = false; | ||
let found = false; | ||
for await (const line of rl) { | ||
if (line.includes("import") && line.includes("@builder.io/qwik")) { | ||
if (line.includes("import")) { | ||
importFound = true; | ||
} | ||
if (line.includes("@builder.io/qwik")) { | ||
builderFound = true; | ||
} | ||
if (importFound && builderFound) { | ||
qwikFiles.push(file); | ||
@@ -165,0 +173,0 @@ found = true; |
{ | ||
"name": "@qwikdev/astro", | ||
"description": "Use Qwik components and Resumability within Astro", | ||
"version": "0.1.6", | ||
"version": "0.1.7", | ||
"contributors": [ | ||
@@ -6,0 +6,0 @@ { |
@@ -160,5 +160,13 @@ import { qwikVite } from "@builder.io/qwik/optimizer"; | ||
let importFound = false; | ||
let builderFound = false; | ||
let found = false; | ||
for await (const line of rl) { | ||
if (line.includes("import") && line.includes("@builder.io/qwik")) { | ||
if (line.includes("import")) { | ||
importFound = true; | ||
} | ||
if (line.includes("@builder.io/qwik")) { | ||
builderFound = true; | ||
} | ||
if (importFound && builderFound) { | ||
qwikFiles.push(file); | ||
@@ -165,0 +173,0 @@ found = true; |
22656
1.64%395
4.22%