New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@qwikdev/astro

Package Overview
Dependencies
Maintainers
3
Versions
115
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@qwikdev/astro - npm Package Compare versions

Comparing version

to
0.1.7

10

./src/index.ts

@@ -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;

2

package.json
{
"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;