Skip to content

Commit

Permalink
Forgot a few exports
Browse files Browse the repository at this point in the history
  • Loading branch information
hansl committed Aug 28, 2016
1 parent f4ea8a6 commit ed405e2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions addon/ng2/commands/serve.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export interface ServeTaskOptions {
sslCert?: string;
}

module.exports = Command.extend({
const ServeCommand = Command.extend({
name: 'serve',
description: 'Builds and serves your app, rebuilding on file changes.',
aliases: ['server', 's'],
Expand Down Expand Up @@ -148,4 +148,5 @@ module.exports = Command.extend({
}
});

module.exports.overrideCore = true;
ServeCommand.overrideCore = true;
export default ServeCommand;
4 changes: 2 additions & 2 deletions addon/ng2/commands/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ const VersionCommand = Command.extend({
});


module.exports = VersionCommand;
module.exports.overrideCore = true;
VersionCommand.overrideCore = true;
export default VersionCommand;

0 comments on commit ed405e2

Please sign in to comment.