Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
vicanso committed Apr 11, 2014
1 parent 6cfb287 commit ce4d910
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 909 deletions.
9 changes: 8 additions & 1 deletion Gruntfile.coffee
@@ -1,16 +1,23 @@
module.exports = (grunt) ->
grunt.initConfig {
clean : ['dest']
coffee :
node :
expand : true
cwd : 'src'
src : ['**.coffee']
dest : 'dest'
ext : '.js'
jshint :
all : ['dest/*.js']
options :
eqnull : true
}

grunt.loadNpmTasks 'grunt-contrib-coffee'
grunt.loadNpmTasks 'grunt-contrib-clean'
grunt.loadNpmTasks 'grunt-contrib-jshint'


grunt.registerTask 'gen', ['coffee']
grunt.registerTask 'gen', ['clean', 'coffee', 'jshint']
grunt.registerTask 'default', ['gen']
8 changes: 4 additions & 4 deletions dest/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

342 changes: 0 additions & 342 deletions dest/src/index.js

This file was deleted.

0 comments on commit ce4d910

Please sign in to comment.