You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
angular-contenteditable/Gruntfile.coffee

25 lines
593 B
CoffeeScript

# global module:false
module.exports = (grunt) ->
grunt.initConfig
pkg: grunt.file.readJSON 'package.json'
meta:
test: 'test'
karma:
e2e: configFile: 'karma.coffee'
e2e_ci:
configFile: 'karma.coffee'
singleRun: true
browsers: ['PhantomJS']
jshint:
src: ['angular-contenteditable.js']
options:
asi: true
require('matchdep').filterDev('grunt-*').forEach grunt.loadNpmTasks
grunt.registerTask 'test', ['karma:e2e_ci']
grunt.registerTask 'lint', ['jshint']
grunt.registerTask 'default', ['lint' , 'test']