From 6572c94bd611a120dd13221da13c747bec02e7c2 Mon Sep 17 00:00:00 2001 From: Simon Brunel Date: Fri, 15 Jul 2016 10:24:56 +0200 Subject: [PATCH] Fix missing Chart.js.zip file for Travis release --- .travis.yml | 1 + gulpfile.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index cecee70c9..4643c405e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,6 +40,7 @@ deploy: - "./dist/Chart.bundle.min.js" - "./dist/Chart.js" - "./dist/Chart.min.js" + - "./dist/Chart.js.zip" skip_cleanup: true on: tags: true diff --git a/gulpfile.js b/gulpfile.js index b0b13c1d6..cec632ed4 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -113,7 +113,7 @@ function packageTask() { .pipe(streamify(replace(/src="((?:\.\.\/)+)dist\//g, 'src="$1'))) ) // finally, create the zip archive - //.pipe(zip('Chart.js.zip')) + .pipe(zip('Chart.js.zip')) .pipe(gulp.dest(outDir)); }