Skip to content

Commit

Permalink
style: add spacing to error message
Browse files Browse the repository at this point in the history
  • Loading branch information
alan-agius4 authored and alexeagle committed Dec 6, 2018
1 parent ea65cc2 commit a613a97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/angular/cli/lib/init.ts
Expand Up @@ -50,8 +50,8 @@ if (process.env['NG_CLI_PROFILING']) {
try {
profiler = require('v8-profiler-node8'); // tslint:disable-line:no-implicit-dependencies
} catch (err) {
throw new Error(`Could not require 'v8-profiler-node8'. You must install it separetely with` +
`'npm install v8-profiler-node8 --no-save.\n\nOriginal error:\n\n${err}`);
throw new Error(`Could not require 'v8-profiler-node8'. You must install it separetely with ` +
`'npm install v8-profiler-node8 --no-save'.\n\nOriginal error:\n\n${err}`);
}

profiler.startProfiling();
Expand Down

0 comments on commit a613a97

Please sign in to comment.