Skip to content

Instantly share code, notes, and snippets.

View bbttxu's full-sized avatar

adam krawiec bbttxu

View GitHub Profile
module.exports = (grunt)->
js_src_files = [ 'Scripts/**/*.js' ]
coffee_source =
'Scripts/coffee/'
grunt.initConfig
jshint:
all:
@bbttxu
bbttxu / gist:7086905
Created October 21, 2013 16:42
jquery plugin boilerplate
((factory) ->
if typeof define is "function" and define.amd
# AMD. Register as an anonymous module.
define ["jquery"], factory
else
# Browser globals
factory jQuery
) ($) ->