Socket
Socket
Sign inDemoInstall

liquidless

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

liquidless - npm Package Compare versions

Comparing version 1.3.2 to 1.3.3

6

dist/filters.js
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.parseArgs = exports.defaultFilters = void 0;
const json5_1 = __importDefault(require("json5"));
exports.defaultFilters = {

@@ -18,4 +22,4 @@ upcase: (value) => value.toUpperCase(),

.map((arg) => arg.trim())
.map((arg) => QUOTED_STRING_REGEX.test(arg) ? arg.slice(1, -1) : JSON.parse(arg))
.map((arg) => QUOTED_STRING_REGEX.test(arg) ? arg.slice(1, -1) : json5_1.default.parse(arg))
: [];
exports.parseArgs = parseArgs;

5

package.json
{
"name": "liquidless",
"version": "1.3.2",
"version": "1.3.3",
"description": "Shopify's Liquid template engine, but less powerful",

@@ -31,3 +31,4 @@ "main": "dist/index.js",

"dependencies": {
"flat": "^5.0.2"
"flat": "^5.0.2",
"json5": "^2.2.3"
},

@@ -34,0 +35,0 @@ "devDependencies": {

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