Touch files
A grunt wrapper for node-touch.
npm install grunt-touch --save-dev
grunt.loadNpmTasks('grunt-touch');
grunt.initConfig({
touch: ['file.js'],
});
grunt.loadNpmTasks('grunt-touch');
grunt.initConfig({
touch: {
options: {
match: true,
},
target: ['match_*.js'],
},
});
grunt.loadNpmTasks('grunt-touch');
grunt.initConfig({
touch: {
options: {
time: Date.now() + 5000, // Set time to 5 seconds in the future
},
target: ['file.js'],
},
});
See node-touch options.
Additionally the following option is supported:
Type: Boolean
Default value: false
By default a list of file paths is expected - those files will be touched.
If you want to match the files by using patterns instead, set match
to true
.
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
Copyright (c) 2013 Paul Spencer. Copyright (c) 2016 Rafał Ruciński. Licensed under the MIT license.