We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1516a69 commit ce53fbdCopy full SHA for ce53fbd
Gruntfile.js
@@ -10,6 +10,7 @@ module.exports = function(grunt) {
10
grunt.loadTasks('lib/grunt');
11
12
var NG_VERSION = util.getVersion();
13
+ var dist = 'angular-'+ NG_VERSION.full;
14
15
16
//global beforeEach
@@ -147,8 +148,8 @@ module.exports = function(grunt) {
147
148
149
compress: {
150
build: {
- options: {archive: 'build/angular-'+ NG_VERSION.full +'.zip'},
151
- src: ['**'], cwd: 'build', expand: true
+ options: {archive: 'build/' + dist +'.zip'},
152
+ src: ['**'], cwd: 'build', expand: true, dest: dist + '/'
153
}
154
},
155
0 commit comments