forked from geddy/model
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJakefile
More file actions
24 lines (20 loc) · 728 Bytes
/
Jakefile
File metadata and controls
24 lines (20 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
var t = new jake.TestTask('Model', function () {
// FIXME: Events fail if run after integration tests
// This line forces them to run first so the tests pass
this.testFiles.include('test/unit/events.js');
this.testFiles.include('test/*.js');
this.testFiles.include('test/**/*.js');
this.testFiles.exclude('test/fixtures/*.js');
this.testFiles.exclude('test/integration/adapters/shared.js');
this.testFiles.exclude('test/integration/adapters/helpers.js');
this.testFiles.exclude('test/config.js');
this.testFiles.exclude('test/db.json');
this.testFiles.exclude('test/db.sample.json');
});
var p = new jake.NpmPublishTask('model', [
'Jakefile'
, 'README.md'
, 'package.json'
, 'lib/**'
, 'test/**'
]);