@imranq2/fhirpatientsummary 1.0.9 → 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2264,8 +2264,8 @@ var NarrativeGenerator = class {
|
|
|
2264
2264
|
const options = aggressive ? AGGRESSIVE_MINIFY_OPTIONS : DEFAULT_MINIFY_OPTIONS;
|
|
2265
2265
|
return await (0, import_html_minifier_terser.minify)(html, options);
|
|
2266
2266
|
} catch (error) {
|
|
2267
|
-
console.warn("HTML minification failed
|
|
2268
|
-
return html
|
|
2267
|
+
console.warn("HTML minification failed", error);
|
|
2268
|
+
return html;
|
|
2269
2269
|
}
|
|
2270
2270
|
}
|
|
2271
2271
|
/**
|
package/dist/index.js
CHANGED
|
@@ -2236,8 +2236,8 @@ var NarrativeGenerator = class {
|
|
|
2236
2236
|
const options = aggressive ? AGGRESSIVE_MINIFY_OPTIONS : DEFAULT_MINIFY_OPTIONS;
|
|
2237
2237
|
return await htmlMinify(html, options);
|
|
2238
2238
|
} catch (error) {
|
|
2239
|
-
console.warn("HTML minification failed
|
|
2240
|
-
return html
|
|
2239
|
+
console.warn("HTML minification failed", error);
|
|
2240
|
+
return html;
|
|
2241
2241
|
}
|
|
2242
2242
|
}
|
|
2243
2243
|
/**
|