File: Jakefile

package info (click to toggle)
node-webpack-sources 1.4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 296 kB
  • sloc: javascript: 1,529; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 345 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
var t = new jake.TestTask('sourcemap-validator', function () {
  this.testFiles.include('tests/*');
  this.testFiles.exclude('tests/fixtures');
});

var d = new jake.NpmPublishTask('sourcemap-validator', function () {
  this.packageFiles.include([
    'index.js'
  , 'package.json'
  , 'Jakefile'
    ]);
  this.packageFiles.exclude([
  ]);
});