shopify-accelerate-app 1.0.58 → 1.0.59

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shopify-accelerate-app",
3
- "version": "1.0.58",
3
+ "version": "1.0.59",
4
4
  "description": "Shopify App development with full Typescript Support",
5
5
  "author": "Felix Tellmann",
6
6
  "license": "MIT",
@@ -300,7 +300,7 @@ export const generateLiquidFiles = (final?: boolean, cssOutput?: string) => {
300
300
  `;
301
301
 
302
302
  const translationTypes = `export type Translations = ${JSON.stringify(mergedTranslations, undefined, 2)
303
- .replace(/(\s+)([^\n:]*):\s+([^\n{]*?),?\n/gi, "$1$1$2: `$3`;\n")
303
+ .replace(/(\s+)([^\n:]*):\s+([^\n{]*?),?\n/gi, "\n$1$2: `$3`;\n")
304
304
  .replace(/"/gi, "")
305
305
  .replace(/,/gi, ";")
306
306
  .replace(/`/gi, '"')