UNPKG

way-js

Version:

Simple, lightweight, persistent, framework-agnostic two-way databinding Javascript library

21 lines (19 loc) 424 B
'use strict'; module.exports = function(grunt) { grunt.initConfig({ uglify: { standalone: { files: { 'dist/way.js': ['src/way.js'] } } }, watch: { files: ['src/way.js'], tasks: ['uglify'] } }); grunt.loadNpmTasks('grunt-contrib-uglify'); grunt.loadNpmTasks('grunt-contrib-watch'); grunt.registerTask('default', ['uglify:standalone', 'watch']); };