123456789101112131415161718192021222324252627 |
- /**
- * A grunt task to keep directories in sync. It is very similar to grunt-contrib-copy
- * but tries to copy only those files that has actually changed.
- *
- * ---------------------------------------------------------------
- *
- * Synchronize files from the `assets` folder to `.tmp/public`,
- * smashing anything that's already there.
- *
- * For usage docs see:
- * https://github.com/tomusdrw/grunt-sync
- *
- */
- module.exports = function(grunt) {
- grunt.config.set('sync', {
- dev: {
- files: [{
- cwd: './assets',
- src: ['**/*.!(coffee)'],
- dest: '.tmp/public'
- }]
- }
- });
- grunt.loadNpmTasks('grunt-sync');
- };
|