Added NaCl support in gulpfile

This commit is contained in:
Igor Zhukov 2014-11-11 18:32:29 +03:00
parent 663fb9dcd6
commit 9fb243bfba

View File

@ -57,6 +57,8 @@ gulp.task('copy', function() {
.pipe(gulp.dest('dist/vendor/leemon_bigint')),
gulp.src('app/vendor/cryptoJS/crypto.js')
.pipe(gulp.dest('dist/vendor/cryptoJS')),
gulp.src(['app/nacl/mtproto_crypto.pexe', 'app/nacl/mtproto_crypto.nmf'])
.pipe(gulp.dest('dist/nacl/')),
gulp.src('app/js/background.js')
.pipe(gulp.dest('dist/js'))
);