Enabled sourcemaps for production.

This commit is contained in:
Nick Winter 2014-10-26 11:02:12 -07:00
parent 27d1304c6c
commit e71767cc1f

View file

@ -5,10 +5,13 @@ startsWith = (string, substring) ->
exports.config =
paths:
public: 'public'
watched: ['app', 'vendor', 'test/app', 'test/demo']
watched: ['app', 'vendor', 'test/app', 'test/demo']
conventions:
ignored: (path) -> startsWith(sysPath.basename(path), '_')
sourceMaps: true
overrides:
production:
sourceMaps: true
files:
javascripts:
defaultExtension: 'coffee'