UNPKG

jquery.caret

Version:

Get caret position and offset from inputor

80 lines (69 loc) 2.06 kB
module.exports = (grunt) -> grunt.initConfig pkg: grunt.file.readJSON 'package.json' bower_path: 'bower_components' jasmine: src: 'src/*.js' options: vendor: [ '<%= bower_path %>/jquery/dist/jquery.min.js', '<%= bower_path %>/jasmine-jquery/lib/jasmine-jquery.js' ] specs: 'spec/javascripts/*.js' # keepRunner: true uglify: options: banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> */\n' build: files: 'dist/<%= pkg.name %>.min.js': ['src/<%= pkg.name %>.js'] coffee: withMaps: options: bare: true sourceMap: true files: 'src/<%= pkg.name %>.js': 'src/<%= pkg.name %>.coffee' withoutMaps: options: bare: true sourceMap: false files: 'dist/<%= pkg.name %>.js': 'src/<%= pkg.name %>.coffee' watch: scripts: files: ['src/*.coffee'] tasks: ['coffee', 'umd'] umd: options: template: 'umd' deps: 'default': ['$'] amd: ['jquery'] cjs: ['jquery'] global: items: ['jQuery'] prefix: '' src: src: 'src/<%= pkg.name %>.js' dist: src: 'dist/<%= pkg.name %>.js' 'json-replace': options: space: " ", replace: version: "<%= pkg.version %>" 'update-version': files:[{ 'bower.json': 'bower.json', 'component.json': 'component.json' }] grunt.loadNpmTasks 'grunt-contrib-coffee' grunt.loadNpmTasks 'grunt-contrib-uglify' grunt.loadNpmTasks 'grunt-contrib-jasmine' grunt.loadNpmTasks 'grunt-json-replace' grunt.loadNpmTasks 'grunt-contrib-watch' grunt.loadNpmTasks 'grunt-umd' grunt.registerTask 'update-version', 'json-replace' grunt.registerTask 'default', ['coffee', 'umd', 'jasmine','update-version', 'uglify', 'watch'] grunt.registerTask 'test', ['coffee', 'umd', 'jasmine']