Skip to content

Commit

Permalink
fix: missing semicolon in ts skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
3cp committed Jan 13, 2020
1 parent af4ea05 commit 5661b23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion skeleton/plugin/dev-app/main.ext
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import 'regenerator-runtime/runtime';
// @endif
// @if feat.typescript
import {Aurelia} from 'aurelia-framework'
import {Aurelia} from 'aurelia-framework';
// @endif
import environment from './environment';

Expand Down
2 changes: 1 addition & 1 deletion skeleton/scaffold-minimum/src/main.ext
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import 'regenerator-runtime/runtime';
// @endif
// @if feat.typescript
import {Aurelia} from 'aurelia-framework'
import {Aurelia} from 'aurelia-framework';
// @endif
// @if ! feat.webpack
import environment from './environment';
Expand Down

0 comments on commit 5661b23

Please sign in to comment.