Skip to content

Instantly share code, notes, and snippets.

@mbixby
Created September 12, 2013 13:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mbixby/6537343 to your computer and use it in GitHub Desktop.
Save mbixby/6537343 to your computer and use it in GitHub Desktop.
Incremental compilation output from Grunt
⚡ gn watch:main annotations-client master *
Running "watch:main" (watch) task
Waiting...OK
>> File "app/abc.coffee" changed.
Running "coffee:compile" (coffee) task
File tmp/javascript/app/abc.js created.
Running "file_did_change" task
File "tmp/javascript/app/abc.js" changed.
Running "jshint:all" (jshint) task
Linting tmp/javascript/app/abc.js ...ERROR
[L11:C16] W117: 'router' is not defined.
export default router;
Running "transpile:app" (transpile) task
Running "file_did_change" task
File "tmp/transpiled/app/abc.js" changed.
Running "watch:main" (watch) task
Completed in 0.505s at Thu Sep 12 2013 15:29:08 GMT+0200 (CEST) - Waiting...
OK
>> File "app/abc.coffee" deleted.
Running "coffee:compile" (coffee) task
Running "file_did_change" task
File "tmp/javascript/app/abc.js" changed or deleted.
Running "jshint:all" (jshint) task
>> 0 files linted. Please check your ignored files.
Running "transpile:app" (transpile) task
Running "file_did_change" task
File "tmp/transpiled/app/abc.js" changed or deleted.
Running "watch:main" (watch) task
Completed in 0.337s at Thu Sep 12 2013 15:29:17 GMT+0200 (CEST) - Waiting...
OK
>> File "app/abc.coffee" added.
Running "coffee:compile" (coffee) task
File tmp/javascript/app/abc.js created.
Running "file_did_change" task
File "tmp/javascript/app/abc.js" changed or created.
Running "jshint:all" (jshint) task
Linting tmp/javascript/app/abc.js ...ERROR
[L11:C16] W117: 'router' is not defined.
export default router;
Running "transpile:app" (transpile) task
Running "file_did_change" task
File "tmp/transpiled/app/abc.js" changed or created.
Running "concat_sourcemap:app" (concat_sourcemap) task
File "tmp/public/assets/app.js" created.
Running "file_did_change" task
File "tmp/public/assets/app.js" changed or created.
Running "watch:main" (watch) task
Completed in 1.578s at Thu Sep 12 2013 15:29:27 GMT+0200 (CEST) - Waiting...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment