From e71767cc1f8cf465b9633dc8a683f3bac9756a73 Mon Sep 17 00:00:00 2001 From: Nick Winter Date: Sun, 26 Oct 2014 11:02:12 -0700 Subject: [PATCH] Enabled sourcemaps for production. --- config.coffee | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/config.coffee b/config.coffee index ff02150a1..503da36b0 100644 --- a/config.coffee +++ b/config.coffee @@ -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'