Skip to content

Instantly share code, notes, and snippets.

@AndreyKopylov
Created July 2, 2015 12:28
Show Gist options
  • Save AndreyKopylov/112a194d1514f7f6a603 to your computer and use it in GitHub Desktop.
Save AndreyKopylov/112a194d1514f7f6a603 to your computer and use it in GitHub Desktop.
localize.coffee
gulp = require 'gulp'
i18n = require 'gulp-html-i18n'
dest = '../public'
index = '../*.html'
gulp.task 'build:localize', ->
gulp.src(index)
.pipe i18n
langDir: './lang'
trace: true
.pipe gulp.dest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment