Explorar el Código

tweak to zip name

Adam Shaw hace 7 años
padre
commit
f86b5f3314
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      tasks/archive.js

+ 1 - 1
tasks/archive.js

@@ -8,7 +8,7 @@ const zip = require('gulp-zip')
 
 // determines the name of the ZIP file
 const packageConfig = require('../package.json')
-const archiveId = packageConfig.name + '-' + (packageConfig.version || '0.0.0')
+const archiveId = packageConfig.name + '-' + (packageConfig.version || 'latest')
 
 // assumes a clean dist already happened
 gulp.task('archive', [ 'archive:files' ], function() {