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,30 @@
'use strict';
module.exports = function (grunt, options) {
return {
options: {
files: ['package.json', 'bower.json'],
updateConfigs: [],
commit: true,
commitMessage: 'Release v%VERSION%',
commitFiles: [
'CHANGELOG.md',
'package.json',
'bower.json',
'dist/<%= pkg.name %>.js',
'dist/<%= pkg.name %>.min.js',
'dist/<%= pkg.name %>.min.no-header.js',
'dist/<%= pkg.name %>.js',
'dist/<%= pkg.name %>_dev_mapped.js',
'dist/<%= pkg.name %>_dev_mapped.js.map',
'dist/architecture/**/*'
],
createTag: true,
tagName: 'v%VERSION%',
tagMessage: 'Version %VERSION%',
push: false,
pushTo: 'origin',
gitDescribeOptions: '--tags --always --abbrev=1 --dirty=-d'
}
};
};