Skip to content

Commit 34119d1

Browse files
chore(all): build update
1 parent 7e49e7f commit 34119d1

27 files changed

+2756
-10354
lines changed

build/tasks/ci.js

-3
This file was deleted.

build/tasks/default.js

-12
This file was deleted.

build/tasks/doc.js

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ gulp.task('doc-generate', function(){
99
.pipe(typedoc({
1010
target'es6',
1111
includeDeclarationstrue,
12+
moduleResolution: 'node',
1213
jsonpaths.doc + '/api.json',
1314
namepaths.packageName + '-docs', 
1415
mode: 'modules',

build/tasks/lint.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ var paths = require('../paths');
33
var eslint = require('gulp-eslint');
44

55
gulp.task('lint', function() {
6-
return gulp.src([paths.source, paths.tests])
6+
return gulp.src(paths.source)
77
.pipe(eslint())
88
.pipe(eslint.format())
99
.pipe(eslint.failAfterError());

0 commit comments

Comments
 (0)