module.exports = function(grunt) { require('load-grunt-tasks')(grunt); grunt.initConfig({ copy: { fromTwine: { src: '/Users/Me/Documents/Twine/Stories/My Story.html', dest: 'src/' } }, watch: { twineStories: { files: '/Users/Me/Documents/Twine/Stories/My Story.html', tasks: 'copy:fromTwine' } } }); grunt.registerTask('default', ['copy']); };