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

@bookshop/eleventy-engine

Package Overview
Dependencies
Maintainers
1
Versions
121
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bookshop/eleventy-engine - npm Package Compare versions

Comparing version

to
2.0.6

.nyc_output/011d0d69-06b2-45bd-93b9-ab93600dd2b2.json

2

.nyc_output/processinfo/index.json

@@ -1,1 +0,1 @@

{"processes":{"237613cb-639b-458c-975e-3400dfa1cf55":{"parent":null,"children":["2a452569-7170-48ee-9cb9-bf2b4323b99c","2d66ba51-8a82-40d5-8fe6-06d3ba6939a8","a5196522-6ca7-487d-8fb8-2164c63da0e9"]},"2a452569-7170-48ee-9cb9-bf2b4323b99c":{"parent":"237613cb-639b-458c-975e-3400dfa1cf55","children":[]},"2d66ba51-8a82-40d5-8fe6-06d3ba6939a8":{"parent":"237613cb-639b-458c-975e-3400dfa1cf55","children":[]},"a5196522-6ca7-487d-8fb8-2164c63da0e9":{"parent":"237613cb-639b-458c-975e-3400dfa1cf55","children":[]}},"files":{},"externalIds":{}}
{"processes":{"011d0d69-06b2-45bd-93b9-ab93600dd2b2":{"parent":"61bf4f38-97a3-40f9-9309-898eba242ee1","children":[]},"61bf4f38-97a3-40f9-9309-898eba242ee1":{"parent":null,"children":["011d0d69-06b2-45bd-93b9-ab93600dd2b2","cfd31dca-d288-4137-bf2c-84d495fb9613","eea9a715-05e7-446a-a4a9-690afc045b2e"]},"cfd31dca-d288-4137-bf2c-84d495fb9613":{"parent":"61bf4f38-97a3-40f9-9309-898eba242ee1","children":[]},"eea9a715-05e7-446a-a4a9-690afc045b2e":{"parent":"61bf4f38-97a3-40f9-9309-898eba242ee1","children":[]}},"files":{},"externalIds":{}}

@@ -46,3 +46,3 @@ import { Liquid } from 'liquidjs';

resolve(root, file, ext) {
return file
return `${root}${file}`
}

@@ -55,6 +55,6 @@ }

let content;
if (/^_bookshop_include_/.test(file)) {
content = this.getShared(file.replace(/^_bookshop_include_/, ""));
} else if (/^_bookshop_/.test(file)) {
content = this.getComponent(file.replace(/^_bookshop_/, ""));
if (/_bookshop_include_/.test(file)) {
content = this.getShared(file.replace(/^.*_bookshop_include_/, ""));
} else if (/_bookshop_/.test(file)) {
content = this.getComponent(file.replace(/^.*_bookshop_/, ""));
} else {

@@ -61,0 +61,0 @@ content = this.files?.[file];

{
"name": "@bookshop/eleventy-engine",
"version": "2.0.5",
"version": "2.0.6",
"description": "Bookshop frontend Eleventy renderer",

@@ -26,3 +26,3 @@ "type": "module",

"esbuild": "^0.11.23",
"liquidjs": "9.27.0",
"liquidjs": "9.28.0",
"slugify": "^1.5.3"

@@ -29,0 +29,0 @@ },