Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Grunt

Marco Bohler
November 06, 2014

 Grunt

Lightning Talk about Grunt (gruntjs.com)

Marco Bohler

November 06, 2014
Tweet

Other Decks in Programming

Transcript

  1. ABOUT #ME • WebDev @smartive GmbH • Passionate Frontend Developer

    • Software Engineering Student @zhaw Winterthur
  2. OVERVIEW • Basic Installation and NPM • Plugin Installation and

    Embedding it into a task • Create your own Tasks
  3. WHAT CAN YOU DO WITH IT? • Create building tasks


    - Minify images
 - Precompile templates
 - Minify JS-Files
 - Deployment • Execute development tasks
 - Watch code changes and react on it
 - Build CSS from SASS/LESS
 - Execute unit tests
  4. TASK REGISTRATION • Register a task which executes a bunch

    of subtasks grunt.registerTask('default', ['watch']); • Execute with grunt taskname