Comparing version 0.7.0 to 0.7.1
{ | ||
"name": "code-fns", | ||
"version": "0.7.0", | ||
"version": "0.7.1", | ||
"description": "A library for visualizing code.", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -38,3 +38,3 @@ # code-fns | ||
const tsx = language.tsx; | ||
await parse(tsx`() => true`); | ||
parse(tsx`() => true`); | ||
``` | ||
@@ -61,3 +61,3 @@ | ||
const generate = (result: string) => tsx`(${result});`; | ||
await parse(generate('false')); | ||
parse(generate('false')); | ||
``` | ||
@@ -81,3 +81,3 @@ | ||
const generate = (result: string) => tsx`(${result});`; | ||
await diff(generate('true'), generate('false')); | ||
diff(generate('true'), generate('false')); | ||
``` | ||
@@ -84,0 +84,0 @@ |
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
87721