Skip to content

Commit 0fbec35

Browse files
committed
fix: remove newline from default CLI output
1 parent 485495a commit 0fbec35

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/bootstrap.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export default function run(projectPkg?: any) {
6363
} else {
6464
denaliInstallType = 'global';
6565
}
66-
ui.info(` | denali v${ addon.pkg.version } [${ denaliInstallType }]\n`);
66+
ui.info(` | denali v${ addon.pkg.version } [${ denaliInstallType }]`);
6767

6868
} else {
6969
commands = Object.assign(commands, addonCommands);

lib/project.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export default class Project {
120120
async _watch(tree: any, options: WatchOptions = {}) {
121121
spinner.start(`Watching ...`);
122122
let timer = startTimer();
123-
const Broccoli = require('broccoli').Builder;
123+
const Broccoli = require('broccoli').Builder;
124124
let broccoli = new Broccoli(tree);
125125
let watcher = new Watcher(broccoli, { beforeRebuild: options.beforeRebuild, interval: 100 });
126126
let destDir = options.destDir || path.join(this.dir, 'dist');

0 commit comments

Comments
 (0)