mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 23:58:02 -05:00
Enabled sourcemaps for production.
This commit is contained in:
parent
27d1304c6c
commit
e71767cc1f
1 changed files with 4 additions and 1 deletions
|
@ -5,10 +5,13 @@ startsWith = (string, substring) ->
|
||||||
exports.config =
|
exports.config =
|
||||||
paths:
|
paths:
|
||||||
public: 'public'
|
public: 'public'
|
||||||
watched: ['app', 'vendor', 'test/app', 'test/demo']
|
watched: ['app', 'vendor', 'test/app', 'test/demo']
|
||||||
conventions:
|
conventions:
|
||||||
ignored: (path) -> startsWith(sysPath.basename(path), '_')
|
ignored: (path) -> startsWith(sysPath.basename(path), '_')
|
||||||
sourceMaps: true
|
sourceMaps: true
|
||||||
|
overrides:
|
||||||
|
production:
|
||||||
|
sourceMaps: true
|
||||||
files:
|
files:
|
||||||
javascripts:
|
javascripts:
|
||||||
defaultExtension: 'coffee'
|
defaultExtension: 'coffee'
|
||||||
|
|
Loading…
Reference in a new issue