File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ export interface ServeTaskOptions {
2828 sslCert ?: string ;
2929}
3030
31- module . exports = Command . extend ( {
31+ const ServeCommand = Command . extend ( {
3232 name : 'serve' ,
3333 description : 'Builds and serves your app, rebuilding on file changes.' ,
3434 aliases : [ 'server' , 's' ] ,
@@ -148,4 +148,5 @@ module.exports = Command.extend({
148148 }
149149} ) ;
150150
151- module . exports . overrideCore = true ;
151+ ServeCommand . overrideCore = true ;
152+ export default ServeCommand ;
Original file line number Diff line number Diff line change @@ -48,5 +48,5 @@ const VersionCommand = Command.extend({
4848} ) ;
4949
5050
51- module . exports = VersionCommand ;
52- module . exports . overrideCore = true ;
51+ VersionCommand . overrideCore = true ;
52+ export default VersionCommand ;
You can’t perform that action at this time.
0 commit comments