Skip to content

Commit

Permalink
Use a block comment instead of a line comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
mondalaci committed Jun 27, 2015
1 parent cf2d825 commit 06fb58c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ var gulp = require('gulp-param')(require('gulp'), process.argv),
VERSION_FILES = ['./package.json', './component.json', './bower.json'],
VERSION_FILES_JS = [SRC, 'package.js'],
package = require('./package.json'),
headerText = '// ' + package.name + ' ' + package.version + ' | ' +
package.license + ' licensed | ' + package.homepage + '\n\n';
headerText = '/* ' + package.name + ' ' + package.version + ' | ' +
package.license + ' licensed | ' + package.homepage + ' */\n\n';

gulp.task('test', ['browserify'], function(cov) {
var reporters = ['html'];
Expand Down

0 comments on commit 06fb58c

Please sign in to comment.