Skip to content

Instantly share code, notes, and snippets.

View MartinSvarrer's full-sized avatar

Martin Svarrer Christensen MartinSvarrer

  • Sitecore
  • Copenhagen, Denmark
  • 22:25 (UTC +02:00)
View GitHub Profile
@anthonyringoet
anthonyringoet / Gruntfile.js
Created November 22, 2013 08:37
Auto compile browserify with Grunt and watch
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
browserify: {
dist: {
files: {
'build/module.js': ['js/**/*.js']
}
}