UNPKG

mcp23017-promise

Version:

MCP23017 library with promises.

26 lines (22 loc) 489 B
module.exports = function (grunt) { 'use strict'; grunt.initConfig({ ts: { default: { tsconfig: true } }, mochaTest: { test: { options: { reporter: 'spec', require: 'ts-node/register' }, src: ['tests/**/*.ts'] } } }); grunt.loadNpmTasks('grunt-ts'); grunt.loadNpmTasks('grunt-mocha-test'); grunt.registerTask('default', ['ts']); };