@quilted/quilt 0.5.55 → 0.5.58

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/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ # @quilted/quilt
2
+
3
+ ## 0.5.58
4
+
5
+ ### Patch Changes
6
+
7
+ - [`917ea19`](https://github.com/lemonmade/quilt/commit/917ea19edbd8ad210675b11ef7f2ebe0c33e0b3e) Thanks [@lemonmade](https://github.com/lemonmade)! - Fixed dependencies to support stricter pnpm-based project
@@ -278,7 +278,7 @@ async function prettifyHtml(html) {
278
278
  return prettier.format(html, {
279
279
  parser: 'html'
280
280
  });
281
- } catch {
281
+ } catch (error) {
282
282
  return html;
283
283
  }
284
284
  }
@@ -254,7 +254,7 @@ async function prettifyHtml(html) {
254
254
  return prettier.format(html, {
255
255
  parser: 'html'
256
256
  });
257
- } catch {
257
+ } catch (error) {
258
258
  return html;
259
259
  }
260
260
  }
@@ -254,7 +254,7 @@ async function prettifyHtml(html) {
254
254
  return prettier.format(html, {
255
255
  parser: 'html'
256
256
  });
257
- } catch {
257
+ } catch (error) {
258
258
  return html;
259
259
  }
260
260
  }