We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ac7aed commit 3584dc3Copy full SHA for 3584dc3
1 file changed
core-build/web-library-build/src/index.ts
@@ -52,8 +52,8 @@ tslint.mergeConfig({
52
});
53
54
// Define default task groups.
55
-export const compileTsTasks: IExecutable = parallel(typescript, text, apiExtractor);
56
-export const buildTasks: IExecutable = task('build', serial(preCopy, sass, parallel(tslint, compileTsTasks), postCopy));
+export const compileTsTasks: IExecutable = parallel(typescript, text);
+export const buildTasks: IExecutable = task('build', serial(preCopy, sass, parallel(tslint, compileTsTasks), apiExtractor, postCopy));
57
export const bundleTasks: IExecutable = task('bundle', serial(buildTasks, webpack));
58
export const testTasks: IExecutable = task('test', serial(buildTasks, karma, jest));
59
export const defaultTasks: IExecutable = serial(bundleTasks, karma, jest);
0 commit comments