Skip to content

Commit

Permalink
Merge pull request evilstreak#119 from XhmikosR/version
Browse files Browse the repository at this point in the history
Add a license header in the generated files.
  • Loading branch information
ashb committed Oct 5, 2013
2 parents 1ee1517 + ab03517 commit fb9f4e9
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
6 changes: 6 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,12 @@ module.exports = function(grunt) {

uglify: {
my_target: {
options: {
compress: true,
mangle: true,
preserveComments: "some",
report: "min"
},
files: {
'dist/markdown.min.js': ['dist/markdown.js']
}
Expand Down
14 changes: 9 additions & 5 deletions inc/header.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
// Released under MIT license
// Copyright (c) 2009-2010 Dominic Baggott
// Copyright (c) 2009-2010 Ash Berlin
// Copyright (c) 2011 Christoph Dorn <[email protected]> (http://www.christophdorn.com)
// Date: @DATE
/*!
* Markdown
* Released under MIT license
* Copyright (c) 2009-2010 Dominic Baggott
* Copyright (c) 2009-2010 Ash Berlin
* Copyright (c) 2011 Christoph Dorn <[email protected]> (http://www.christophdorn.com)
* Version: @VERSION
* Date: @DATE
*/

(function(expose) {

0 comments on commit fb9f4e9

Please sign in to comment.