liquidless
Advanced tools
Comparing version 1.3.2 to 1.3.3
"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; |
{ | ||
"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": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7500
96
2
+ Addedjson5@^2.2.3
+ Addedjson5@2.2.3(transitive)