Skip to content

Commit

Permalink
removed version number from edge build name
Browse files Browse the repository at this point in the history
  • Loading branch information
liabru committed May 20, 2015
1 parent 200fcbe commit e6b998e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
buildName: 'matter',
buildVersion: '<%= pkg.version %>-edge',
buildVersion: 'edge-master',
docVersion: 'v<%= pkg.version %>',
concat: {
build: {
Expand Down Expand Up @@ -146,7 +146,7 @@ module.exports = function(grunt) {

// edge build mode (default)
if (isEdge || (!isDev && !isRelease)) {
grunt.config.set('buildVersion', pkg.version + '-edge');
grunt.config.set('buildVersion', 'edge-master');
grunt.task.run('concat', 'preprocess', 'uglify:min');
}
});
Expand Down

0 comments on commit e6b998e

Please sign in to comment.