geolocation added on offerCar and travel page

This commit is contained in:
arnaucode
2017-01-27 17:49:04 +01:00
parent d76ea5ca19
commit 2b36c80084
727 changed files with 299906 additions and 18 deletions

View File

@@ -0,0 +1,13 @@
'use strict';
module.exports = function (grunt, options) {
var pkgFunction = function () {
return grunt.file.readJSON('package.json')
};
//THIS extension forces the banner or whatever uses pkgFunction to always get the latest version
//where as pkg is only done once at grunt init.
_.extend(options, {
pkgFunction: pkgFunction
});
return pkgFunction();
};