From 3d6ca445f80df148336002b56ad415d6edec62de Mon Sep 17 00:00:00 2001 From: Brandon Tilley Date: Sun, 18 May 2014 10:25:51 -0700 Subject: [PATCH] Update devDependencies --- gulpfile.js | 14 ++++++-------- package.json | 12 ++++++------ 2 files changed, 12 insertions(+), 14 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 7ac6443..a63fdb9 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -7,14 +7,15 @@ var jshint = require('gulp-jshint'); var replace = require('gulp-replace'); var metadata = require('./package.json'); -var shortHeader = "/*! Planetary.js {{version}} | (c) 2013 Brandon Tilley | Released under MIT License */" +var shortHeader = "/*! Planetary.js <%= version %> | (c) 2013 Brandon Tilley | Released under MIT License */\n" var fullHeader = [ - "/*! Planetary.js v{{version}}", + "/*! Planetary.js v<%= version %>", " * Copyright (c) 2013 Brandon Tilley", " *", " * Released under the MIT license", - " * Date: {{now}}", - " */" + " * Date: <%= new Date().toISOString() %>", + " */", + "" ].join("\n"); var fullSource = gulp.src(['./src/_umd_header.js', './src/body.js', './src/plugins.js', './src/_umd_footer.js']); @@ -42,7 +43,4 @@ gulp.task('build', function() { gulp.src('./src/world-110m.json').pipe(gulp.dest('./dist')); }); -gulp.task('default', function() { - gulp.run('jshint'); - gulp.run('build'); -}); +gulp.task('default', ['jshint', 'build']); diff --git a/package.json b/package.json index d52abf1..1775b6b 100644 --- a/package.json +++ b/package.json @@ -19,14 +19,14 @@ }, "homepage": "http://planetaryjs.com", "devDependencies": { - "gulp": "~3.2.0", + "gulp": "~3.6.2", "gulp-concat": "BinaryMuse/gulp-concat", - "gulp-header": "~0.4.0", - "gulp-uglify": "~0.1.0", - "gulp-rename": "~0.2.1", + "gulp-header": "~1.0.2", + "gulp-uglify": "~0.3.0", + "gulp-rename": "~1.2.0", "bower": "~1.2.8", - "gulp-jshint": "~1.3.1", - "gulp-replace": "~0.2.0" + "gulp-jshint": "~1.6.1", + "gulp-replace": "~0.3.0" }, "dependencies": { "topojson": ">=1.4.6",