Jakefile 226 B

1234567891011121314
  1. testTask('FileList', function () {
  2. this.testFiles.include('test/*.js');
  3. });
  4. publishTask('FileList', function () {
  5. this.packageFiles.include([
  6. 'Jakefile'
  7. , 'README.md'
  8. , 'package.json'
  9. , 'index.js'
  10. ]);
  11. });