Skip to content

Commit

Permalink
Switch to Grunt
Browse files Browse the repository at this point in the history
  • Loading branch information
trethaller committed Aug 23, 2013
1 parent 06de0e4 commit a1f1c69
Show file tree
Hide file tree
Showing 66 changed files with 1,103 additions and 1,077 deletions.
5 changes: 4 additions & 1 deletion .gitignore
@@ -1,4 +1,7 @@
*.sublime-*
*.hi
*.o
*.exe
*.exe
node_modules
*.map
*.src.coffee
28 changes: 28 additions & 0 deletions Gruntfile.coffee
@@ -0,0 +1,28 @@
module.exports = (grunt)->
# Project configuration.

grunt.initConfig {
pkg: grunt.file.readJSON('package.json'),

coffee:
compile:
options:
bare: true
join: true
sourceMap: true
files:
'out/js/teztura-core.js': ['src/core/*.coffee'],
'out/js/teztura.js': ['src/*.coffee'],

concat:
dist:
src: ['src/renderers/*.js'],
dest: 'out/js/teztura-renderers.js',
}


grunt.loadNpmTasks('grunt-contrib-coffee')
grunt.loadNpmTasks('grunt-contrib-concat')

# Default task(s).
grunt.registerTask('default', ['coffee', 'concat'])
12 changes: 0 additions & 12 deletions build.hs

This file was deleted.

0 comments on commit a1f1c69

Please sign in to comment.