]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Fix missing Chart.js.zip file for Travis release v2.2.0-rc.1
authorSimon Brunel <simonbrunel@users.noreply.github.com>
Fri, 15 Jul 2016 08:24:56 +0000 (10:24 +0200)
committerSimon Brunel <simonbrunel@users.noreply.github.com>
Fri, 15 Jul 2016 11:01:55 +0000 (13:01 +0200)
.travis.yml
gulpfile.js

index cecee70c95fb1226a6c363735215e2e194019168..4643c405e4e531c1c37a3b54def06ff319a85f1b 100644 (file)
@@ -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
index b0b13c1d6a855ba279f0e6de0d2f507a79d21ddf..cec632ed4761df4c4ebcc073ade1be474b63dce1 100644 (file)
@@ -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));
 }