Skip to content
This repository has been archived by the owner on Oct 4, 2021. It is now read-only.

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
SRNV committed Feb 5, 2021
1 parent 826e758 commit fc12611
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 3 additions & 0 deletions docs/chore/messages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 0 additions & 1 deletion examples/website/App.o3
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ import component RouterMain from './routers/RouterMain.o3';
background: var(--background);
}
</style>
def:
</head>
<RouterMain namespace="main" />
</template>
Expand Down
2 changes: 1 addition & 1 deletion src/classes/TSXContextCreator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit fc12611

Please sign in to comment.