@vue-macros/api
Advanced tools
Comparing version 0.6.0 to 0.6.1
@@ -169,3 +169,6 @@ "use strict";Object.defineProperty(exports, "__esModule", {value: true}); | ||
if (isProduction) { | ||
types = types.filter((t) => t === "Boolean" || t === "Function"); | ||
const hasBoolean = types.includes("Boolean"); | ||
types = types.filter( | ||
(t) => t === "Boolean" || hasBoolean && t === "String" || t === "Function" | ||
); | ||
} | ||
@@ -172,0 +175,0 @@ if (types.length === 0) |
@@ -169,3 +169,6 @@ "use strict";Object.defineProperty(exports, "__esModule", {value: true}); | ||
if (isProduction) { | ||
types = types.filter((t) => t === "Boolean" || t === "Function"); | ||
const hasBoolean = types.includes("Boolean"); | ||
types = types.filter( | ||
(t) => t === "Boolean" || hasBoolean && t === "String" || t === "Function" | ||
); | ||
} | ||
@@ -172,0 +175,0 @@ if (types.length === 0) |
{ | ||
"name": "@vue-macros/api", | ||
"version": "0.6.0", | ||
"version": "0.6.1", | ||
"packageManager": "pnpm@8.3.1", | ||
@@ -5,0 +5,0 @@ "description": "General API for Vue Macros.", |
Sorry, the diff of this file is not supported yet
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
121294
3587