extensions/ql-vscode/gulpfile.ts/index.ts (16 lines of code) (raw):

import * as gulp from 'gulp'; import { compileTypeScript, watchTypeScript, copyViewCss, cleanOutput } from './typescript'; import { compileTextMateGrammar } from './textmate'; import { copyTestData } from './tests'; import { compileView } from './webpack'; import { packageExtension } from './package'; import { injectAppInsightsKey } from './appInsights'; export const buildWithoutPackage = gulp.series( cleanOutput, gulp.parallel( compileTypeScript, compileTextMateGrammar, compileView, copyTestData, copyViewCss ) ); export { cleanOutput, compileTextMateGrammar, watchTypeScript, compileTypeScript, copyTestData, injectAppInsightsKey }; export default gulp.series(buildWithoutPackage, injectAppInsightsKey, packageExtension);