diff options
| author | Zog | 2017-12-26 10:00:32 +0100 | 
|---|---|---|
| committer | Zog | 2017-12-27 09:14:06 +0100 | 
| commit | 8a170684b07b6f7a97222e69c1680bf735757458 (patch) | |
| tree | a867091e84c6a08f5c29bb1904032220d7089381 | |
| parent | 344c7f884f4c25ece7490c94dfcb82e66bff0b2d (diff) | |
| download | chouette-core-8a170684b07b6f7a97222e69c1680bf735757458.tar.bz2 | |
Refs #5376; :fire: logs in Gruntfile5376-fix-vehicle-journeys-ui
| -rw-r--r-- | Gruntfile.coffee | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/Gruntfile.coffee b/Gruntfile.coffee index 16b55e8ef..958ff81f8 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -1,12 +1,12 @@  module.exports = (grunt) =>    javascriptSpecPath = (path) -> -    grunt.log.writeln "IN: " + path +    grunt.log.debug "IN: " + path      path = path.replace 'app/javascript', 'spec/javascript'      if path.match /actions/        path = path.replace /actions.*/, 'actions_spec.js'      if path.match /reducers/        path = path.replace '.js', '_spec.js' -    grunt.log.writeln "OUT: " + path +    grunt.log.debug "OUT: " + path      path    grunt.initConfig @@ -37,7 +37,7 @@ module.exports = (grunt) =>      files = []      this.files.forEach (file) ->        files.push file.src -    grunt.log.writeln files +    grunt.log.debug files      grunt.util.spawn        cmd: 'node_modules/.bin/jest'        args: files | 
