Comparing version 2.0.0 to 2.0.1
@@ -7,2 +7,7 @@ # Changelog | ||
## [2.0.1] - 2017-08-13 | ||
### Changed | ||
- Remove unused async function | ||
- Correct documenation on doctype | ||
## [2.0.0] - 2017-08-12 | ||
@@ -9,0 +14,0 @@ ### Changed |
{ | ||
"name": "html2pug", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "Converts HTML to Pug", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -22,3 +22,3 @@ # html2pug | ||
```pug | ||
!doctype html | ||
doctype html | ||
html(lang='en') | ||
@@ -25,0 +25,0 @@ head |
@@ -41,8 +41,4 @@ #!/usr/bin/env node | ||
try { | ||
const pug = await html2pug(stdin, { tabs, fragment }) | ||
console.log(pug) | ||
} catch (e) { | ||
throw e | ||
} | ||
const pug = html2pug(stdin, { tabs, fragment }) | ||
console.log(pug) | ||
} | ||
@@ -49,0 +45,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
10994
1072
221