Skip to content

Commit

Permalink
Update banner
Browse files Browse the repository at this point in the history
  • Loading branch information
drkibitz committed Feb 13, 2014
1 parent 737634b commit 8f40be6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@ var gulp = require('gulp'),
map = require('map-stream'),
mocha = require('gulp-mocha'),
uglify = require('gulp-uglify'),
pkg = require('./package.json'),
pkg = require('./package.json'),
date = new Date(),
banner = [
'/**',
' * ' + pkg.name + ' ' + pkg.version,
' * ' + pkg.homepage,
' * Copyright (c) 2013 Dr. Kibitz, http://drkibitz.com',
' * Copyright (c) 2013-' + date.getFullYear() + ' Dr. Kibitz, http://drkibitz.com',
' * ' + pkg.description,
' * built: ' + new Date(),
' * built: ' + date,
' */',
''
].join('\n');
Expand Down
4 changes: 2 additions & 2 deletions index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8f40be6

Please sign in to comment.