Skip to content

Commit

Permalink
Updated header comment
Browse files Browse the repository at this point in the history
  • Loading branch information
stuyam committed Feb 7, 2016
1 parent f918fcd commit 8925b82
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dist/jquery.pressure.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Pressure v0.0.4 | Created By Stuart Yamartino | MIT License | 2015 - Present
// Pressure v0.0.4 | Created By Stuart Yamartino | MIT License | 2015-Present
;(function(window, document, $) {
'use strict';

Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.pressure.min.js

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

2 changes: 1 addition & 1 deletion dist/pressure.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Pressure v0.0.4 | Created By Stuart Yamartino | MIT License | 2015 - Present
// Pressure v0.0.4 | Created By Stuart Yamartino | MIT License | 2015-Present
;(function(window, document) {
'use strict';

Expand Down
2 changes: 1 addition & 1 deletion dist/pressure.min.js

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

4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var stripDebug = require('gulp-strip-debug');
var uglify = require('gulp-uglify');
var babel = require('gulp-babel');

var HEADER_COMMENT = '// Pressure v0.0.4 | Created By Stuart Yamartino | MIT License | 2015 - Present\n';
var HEADER_COMMENT = '// Pressure v0.0.4 | Created By Stuart Yamartino | MIT License | 2015-Present\n';
var DESTINATION = '.';

// JS concat, strip debugging and minify
Expand Down Expand Up @@ -70,7 +70,7 @@ gulp.task('jquery-pressure', function() {
// This will output the non-minified version
.pipe(gulp.dest(DESTINATION))

// This will minify and rename to pressure.min.js
// This will minify and rename to jquery.pressure.min.js
.pipe(stripDebug())
.pipe(uglify())
.pipe(insert.prepend(HEADER_COMMENT))
Expand Down

0 comments on commit 8925b82

Please sign in to comment.