Comparing version 0.4.0 to 0.4.1
{ | ||
"name": "walt-cli", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"description": "CLI for Walt", | ||
@@ -34,4 +34,4 @@ "main": "index.js", | ||
"walt-buildtools": "^0.1.0", | ||
"walt-compiler": "^0.15.0", | ||
"walt-link": "^0.4.2" | ||
"walt-compiler": "^0.15.1", | ||
"walt-link": "^0.4.3" | ||
}, | ||
@@ -38,0 +38,0 @@ "ava": { |
@@ -30,6 +30,6 @@ import test from "ava"; | ||
const H1_CLOSE: i32[] = ['<', '/', 'h', '1', '>']; | ||
const UL_OPEN: i32 = ['<', 'u', 'l', '>']; | ||
const UL_CLOSE: i32 = ['<', '/', 'u', 'l', '>']; | ||
const LI_OPEN: i32 = ['<', 'l', 'i', '>']; | ||
const LI_CLOSE: i32 = ['<', '/', 'l', 'i', '>']; | ||
const UL_OPEN: i32[] = ['<', 'u', 'l', '>']; | ||
const UL_CLOSE: i32[] = ['<', '/', 'u', 'l', '>']; | ||
const LI_OPEN: i32[] = ['<', 'l', 'i', '>']; | ||
const LI_CLOSE: i32[] = ['<', '/', 'l', 'i', '>']; | ||
@@ -36,0 +36,0 @@ export function run(): i32 { |
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
11514