1 | var t = new jake.TestTask('convert-units', function () {
|
2 | this.testFiles.include('test/*');
|
3 | });
|
4 |
|
5 | var d = new jake.PublishTask('convert-units', function () {
|
6 | this.packageFiles.include([
|
7 | 'lib/**'
|
8 | , 'test/*'
|
9 | , 'Jakefile'
|
10 | , 'package.json'
|
11 | , 'Readme.md'
|
12 | ]);
|
13 | });
|
14 |
|