Skip to content

Commit

Permalink
fix(@angular/cli): support no semicolon scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
clydin committed Jan 11, 2018
1 parent 9177ab3 commit af5977c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@angular/cli/plugins/scripts-webpack-plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export class ScriptsWebpackPlugin {
const concatSource = new ConcatSource();
sources.forEach(source => {
concatSource.add(source);
concatSource.add('\n');
concatSource.add('\n;');
});

const combinedSource = new CachedSource(concatSource);
Expand Down

0 comments on commit af5977c

Please sign in to comment.