15 lines
226 B
Text
15 lines
226 B
Text
|
testTask('FileList', function () {
|
||
|
this.testFiles.include('test/*.js');
|
||
|
});
|
||
|
|
||
|
publishTask('FileList', function () {
|
||
|
this.packageFiles.include([
|
||
|
'Jakefile'
|
||
|
, 'README.md'
|
||
|
, 'package.json'
|
||
|
, 'index.js'
|
||
|
]);
|
||
|
});
|
||
|
|
||
|
|