From fc126110ddb2e49a3bfa71233e7ca75b5fb81928 Mon Sep 17 00:00:00 2001 From: SRNV Date: Fri, 5 Feb 2021 23:05:30 +0100 Subject: [PATCH] wip --- docs/chore/messages.ts | 3 +++ examples/website/App.o3 | 1 - src/classes/TSXContextCreator.ts | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/chore/messages.ts b/docs/chore/messages.ts index 84565d8c..dfe5ba01 100644 --- a/docs/chore/messages.ts +++ b/docs/chore/messages.ts @@ -48,6 +48,9 @@ export default { - ${blue('chore')}: Ogone will start using workers, the first one is set for the local server. - ${blue('chore')}: specifying the port on configurtion is no more required. + - ${blue('chore')}: support for Deno 1.7.0+ + a new strategy has been implemented. this one improves the performances of the type checking step + like 10 seconds of type checking against 1 seconds - ${green('feat')}: Ogone CLI is landed start using it by the following command: diff --git a/examples/website/App.o3 b/examples/website/App.o3 index 1cbf8f71..42255d3e 100755 --- a/examples/website/App.o3 +++ b/examples/website/App.o3 @@ -22,7 +22,6 @@ import component RouterMain from './routers/RouterMain.o3'; background: var(--background); } - def: diff --git a/src/classes/TSXContextCreator.ts b/src/classes/TSXContextCreator.ts index c3ddb3cf..55bfb447 100755 --- a/src/classes/TSXContextCreator.ts +++ b/src/classes/TSXContextCreator.ts @@ -44,7 +44,7 @@ export default class TSXContextCreator extends Utils { hasError = diagnosticError; } if (!hasError) { - this.infos(`Type Checking took ~${Math.floor(performance.now() - startPerf)} ms`); + this.infos(`Type checking took ~${Math.floor(performance.now() - startPerf)} ms`); this.success('no type error found.'); } } catch (err) {