@toddledev/core
Advanced tools
Comparing version
@@ -77,2 +77,3 @@ import type { Component, ComponentData } from '../component/component.types'; | ||
getCustomFormula: CustomFormulaHandler; | ||
errors: Error[]; | ||
}; | ||
@@ -79,0 +80,0 @@ env: ToddleEnv | undefined; |
@@ -81,7 +81,3 @@ "use strict"; | ||
catch (e) { | ||
if (typeof window !== 'undefined' && | ||
window.toddle.errors) { | ||
const myWindow = window; | ||
myWindow.toddle.errors.push(e); | ||
} | ||
ctx.toddle.errors.push(e); | ||
if (ctx.env?.logErrors) { | ||
@@ -109,7 +105,3 @@ console.error(e); | ||
catch (e) { | ||
if (typeof window !== 'undefined' && | ||
window.toddle.errors) { | ||
const myWindow = window; | ||
myWindow.toddle.errors.push(e); | ||
} | ||
ctx.toddle.errors.push(e); | ||
if (ctx.env?.logErrors) { | ||
@@ -116,0 +108,0 @@ console.error(e); |
@@ -16,3 +16,3 @@ { | ||
"main": "dist/index.js", | ||
"version": "0.0.3-alpha.4" | ||
"version": "0.0.3-alpha.5" | ||
} |
@@ -12,3 +12,2 @@ import type { Component, ComponentData } from '../component/component.types' | ||
// Define the some objects types as union of ServerSide and ClientSide runtime types as applyFormula is used in both | ||
declare const window: Window | undefined | ||
declare const document: Document | undefined | ||
@@ -110,2 +109,3 @@ type ShadowRoot = DocumentFragment | ||
getCustomFormula: CustomFormulaHandler | ||
errors: Error[] | ||
} | ||
@@ -229,9 +229,3 @@ env: ToddleEnv | undefined | ||
} catch (e) { | ||
if ( | ||
typeof window !== 'undefined' && | ||
(window as any).toddle.errors | ||
) { | ||
const myWindow = window as any | ||
myWindow.toddle.errors.push(e as Error) | ||
} | ||
ctx.toddle.errors.push(e as Error) | ||
if (ctx.env?.logErrors) { | ||
@@ -260,9 +254,3 @@ console.error(e) | ||
} catch (e) { | ||
if ( | ||
typeof window !== 'undefined' && | ||
(window as any).toddle.errors | ||
) { | ||
const myWindow = window as any | ||
myWindow.toddle.errors.push(e as Error) | ||
} | ||
ctx.toddle.errors.push(e as Error) | ||
if (ctx.env?.logErrors) { | ||
@@ -269,0 +257,0 @@ console.error(e) |
Sorry, the diff of this file is not supported yet
373301
-0.27%8506
-0.22%