minify-html-literals
Advanced tools
Comparing version 1.3.0 to 1.3.1
@@ -5,2 +5,9 @@ # Changelog | ||
### [1.3.1](https://github.com/asyncLiz/minify-html-literals/compare/v1.3.0...v1.3.1) (2020-06-10) | ||
### Bug Fixes | ||
* don't remove attribute quotes by default. Fixes [#12](https://github.com/asyncLiz/minify-html-literals/issues/12). ([#13](https://github.com/asyncLiz/minify-html-literals/issues/13)) ([e18ae65](https://github.com/asyncLiz/minify-html-literals/commit/e18ae65e202802cb2fd793089f76de3af54fec6f)) | ||
## [1.3.0](https://github.com/asyncLiz/minify-html-literals/compare/v1.2.2...v1.3.0) (2020-02-08) | ||
@@ -7,0 +14,0 @@ |
export * from './src/minifyHTMLLiterals'; | ||
export * from './src/strategy'; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ Copyright 2018 Elizabeth Mitchell |
{ | ||
"name": "minify-html-literals", | ||
"version": "1.3.0", | ||
"version": "1.3.1", | ||
"description": "Minify HTML template literal strings", | ||
@@ -75,3 +75,3 @@ "main": "index.js", | ||
"lint-staged": "^7.2.0", | ||
"mocha": "^5.2.0", | ||
"mocha": "^7.2.0", | ||
"nyc": "^15.0.0", | ||
@@ -82,3 +82,3 @@ "prettier": "^1.13.7", | ||
"source-map-support": "^0.5.6", | ||
"standard-version": "^7.1.0", | ||
"standard-version": "^8.0.0", | ||
"ts-node": "^7.0.0", | ||
@@ -85,0 +85,0 @@ "typescript": "^2.9.2" |
@@ -0,0 +0,0 @@ # minify-html-literals |
@@ -0,0 +0,0 @@ import { SourceMapOptions } from 'magic-string'; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import * as CleanCSS from 'clean-css'; |
@@ -21,3 +21,3 @@ "use strict"; | ||
processConditionalComments: true, | ||
removeAttributeQuotes: true, | ||
removeAttributeQuotes: false, | ||
removeComments: true, | ||
@@ -24,0 +24,0 @@ removeEmptyAttributes: true, |
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
42023