aboutsummaryrefslogtreecommitdiffstats
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorIgor Minar2013-03-06 14:23:05 -0800
committerIgor Minar2013-03-06 14:51:21 -0800
commitd38d8448e85e114e6bee39f54919f8522bdea013 (patch)
tree4f980d64e85c40c866f21f03ca8078ff37346266 /Gruntfile.js
parent8a96393179d81c57a4ea0ea459aa7f77d63ae5d5 (diff)
downloadangular.js-d38d8448e85e114e6bee39f54919f8522bdea013.tar.bz2
chore(Grunt): include dot files in the final zip
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 69ae7397..75e1f8fb 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -149,7 +149,7 @@ module.exports = function(grunt) {
compress: {
build: {
options: {archive: 'build/' + dist +'.zip'},
- src: ['**'], cwd: 'build', expand: true, dest: dist + '/'
+ src: ['**'], cwd: 'build', expand: true, dot: true, dest: dist + '/'
}
},