Skip to content

Commit fb820c5

Browse files
committed
Update web-library-build to support ESLint
1 parent 16c3423 commit fb820c5

File tree

1 file changed

+2
-2
lines changed
  • core-build/web-library-build/src

1 file changed

+2
-2
lines changed

core-build/web-library-build/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {
1414
setConfig,
1515
getConfig
1616
} from '@microsoft/gulp-core-build';
17-
import { apiExtractor, tscCmd, tslintCmd } from '@microsoft/gulp-core-build-typescript';
17+
import { apiExtractor, tscCmd, lintCmd } from '@microsoft/gulp-core-build-typescript';
1818
import { sass } from '@microsoft/gulp-core-build-sass';
1919
import { webpack } from '@microsoft/gulp-core-build-webpack';
2020
import { serve, reload } from '@microsoft/gulp-core-build-serve';
@@ -57,7 +57,7 @@ setConfig({
5757
*/
5858
export const buildTasks: IExecutable = task(
5959
'build',
60-
serial(preCopy, sass, parallel(tslintCmd, tscCmd), apiExtractor, postCopy)
60+
serial(preCopy, sass, parallel(lintCmd, tscCmd), apiExtractor, postCopy)
6161
);
6262

6363
/**

0 commit comments

Comments
 (0)