Skip to content

Instantly share code, notes, and snippets.

@artyomtrityak
Created June 16, 2014 07:21
Show Gist options
  • Select an option

  • Save artyomtrityak/c1061f769b5af0bf655f to your computer and use it in GitHub Desktop.

Select an option

Save artyomtrityak/c1061f769b5af0bf655f to your computer and use it in GitHub Desktop.
requirejs = require 'requirejs'
gulp.task 'build-js', ->
requirejs.optimize {
baseUrl: '.'
appDir: 'public/app'
dir: 'app_builds/en'
mainConfigFile: 'public/app/config.js'
waitSeconds: 60
optimize: 'uglify2'
removeCombined: true
preserveLicenseComments: false
useStrict: true
modules: [
name: 'config'
exclude: ['json!properties']
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment