Socket
Socket
Sign inDemoInstall

@11ty/eleventy

Package Overview
Dependencies
Maintainers
1
Versions
187
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@11ty/eleventy - npm Package Compare versions

Comparing version 3.0.0-alpha.1 to 3.0.0-alpha.2

8

package.json
{
"name": "@11ty/eleventy",
"version": "3.0.0-alpha.1",
"description": "A simpler (static) site generator.",
"version": "3.0.0-alpha.2",
"description": "A simpler static site generator.",
"publishConfig": {

@@ -82,3 +82,3 @@ "access": "public"

"@iarna/toml": "^2.2.5",
"@vue/server-renderer": "^3.3.11",
"@vue/server-renderer": "^3.3.12",
"@zachleat/noop": "^1.0.3",

@@ -99,3 +99,3 @@ "ava": "^6.0.1",

"sass": "^1.69.5",
"vue": "^3.3.11"
"vue": "^3.3.12"
},

@@ -102,0 +102,0 @@ "dependencies": {

@@ -23,5 +23,5 @@ import { performance } from "node:perf_hooks";

import { getEleventyPackageJson, getWorkingProjectPackageJson } from "./Util/ImportJsonSync.js";
import RenderPlugin from "./Plugins/RenderPlugin.js";
import I18nPlugin from "./Plugins/I18nPlugin.js";
import HtmlBasePlugin from "./Plugins/HtmlBasePlugin.js";
import RenderPlugin, * as RenderPluginExtras from "./Plugins/RenderPlugin.js";
import I18nPlugin, * as I18nPluginExtras from "./Plugins/I18nPlugin.js";
import HtmlBasePlugin, * as HtmlBasePluginExtras from "./Plugins/HtmlBasePlugin.js";

@@ -1287,2 +1287,7 @@ const pkg = getEleventyPackageJson();

// extend for exporting to CJS
Object.assign(RenderPlugin, RenderPluginExtras);
Object.assign(I18nPlugin, I18nPluginExtras);
Object.assign(HtmlBasePlugin, HtmlBasePluginExtras);
export {

@@ -1289,0 +1294,0 @@ Eleventy,

@@ -701,2 +701,4 @@ import util from "node:util";

static getIncludedCollectionNames(data) {
TemplateData.cleanupData(data);
if ("tags" in data) {

@@ -703,0 +705,0 @@ let excludes = TemplateData.getNormalizedExcludedCollections(data);

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc