@highstate/cilium 0.9.31 → 0.9.33
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/highstate.manifest.json +2 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +9 -9
package/dist/index.js
CHANGED
@@ -1227,7 +1227,7 @@ ${indent}`) + "'";
|
|
1227
1227
|
}
|
1228
1228
|
function blockString({ comment, type, value }, ctx, onComment, onChompKeep) {
|
1229
1229
|
const { blockQuote, commentString, lineWidth } = ctx.options;
|
1230
|
-
if (!blockQuote || /\n[\t ]+$/.test(value)
|
1230
|
+
if (!blockQuote || /\n[\t ]+$/.test(value)) {
|
1231
1231
|
return quotedString(value, ctx);
|
1232
1232
|
}
|
1233
1233
|
const indent = ctx.indent || (ctx.forceBlockIndent || containsDocumentMarker(value) ? " " : "");
|