UNPKG

277 BPlain TextView Raw
1var t = new jake.TestTask('convert-units', function () {
2 this.testFiles.include('test/*');
3});
4
5var 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