Add gulp task for copy plugins templates.

stable
Andrey Antukh 2014-09-04 14:58:47 +02:00
parent 7b279bb00f
commit e789d49244
1 changed files with 3 additions and 1 deletions

View File

@ -170,7 +170,6 @@ gulp.task "jslibs", ->
.pipe(concat("libs.js"))
.pipe(gulp.dest("dist/js/"))
gulp.task "locales", ->
gulp.src("app/locales/en/app.json")
.pipe(wrap("angular.module('taigaLocales').constant('localesEnglish', <%= contents %>);"))
@ -195,6 +194,9 @@ gulp.task "copy", ->
gulp.src("#{paths.app}/images/**/*")
.pipe(gulp.dest("#{paths.dist}/images/"))
gulp.src("#{paths.app}/plugins/**/templates/*")
.pipe(gulp.dest("#{paths.dist}/plugins/"))
gulp.task "connect", ->
connect.server({