Skip to content

Commit 6ccddad

Browse files
author
hirsch88
committed
Fix build task
1 parent bbeb613 commit 6ccddad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build/tasks/build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function transpiler(filePath, isTest, files) {
4545
let tsProject = !!isTest ? tsProjectTest : tsProjectSource;
4646
return gulp
4747
.src([
48-
'./typings/*.d.ts',
48+
'./typings/**/*.d.ts',
4949
path.join(filePath, files)
5050
])
5151
.pipe($.plumber({ errorHandler: $.notify.onError('Error: <%= error.message %>') }))

src/database/factories/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Factory } from '../../core/database';
1+
import { Factory } from '../../core/database/Factory';
22
import { User } from '../../api/models/User';
33

44
/**

0 commit comments

Comments
 (0)