Skip to content

Commit

Permalink
Merge 4c97828 into 6ccd353
Browse files Browse the repository at this point in the history
  • Loading branch information
Aditya Bist committed Dec 18, 2019
2 parents 6ccd353 + 4c97828 commit 2d77ef9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 21 deletions.
5 changes: 0 additions & 5 deletions build/build.yml
Expand Up @@ -39,11 +39,6 @@ steps:
verbose: false
customCommand: 'install -g gulp-cli'

- task: Gulp@0
displayName: 'gulp install'
inputs:
targets: install

- bash: |
export BUILDMACHINE=true
export VsMsSqlEnv=dev
Expand Down
12 changes: 3 additions & 9 deletions gulpfile.js
@@ -1,6 +1,5 @@
var gulp = require('gulp');
var rename = require('gulp-rename');
var install = require('gulp-install');
var gulpTsLint = require('gulp-tslint');
var ts = require('gulp-typescript');
var tslint = require('tslint');
Expand Down Expand Up @@ -256,8 +255,8 @@ gulp.task('ext:test', async () => {
launchArgs: args
});
} catch (error) {
console.log(`stdout: ${stdout}`);
console.log(`stderr: ${stderr}`);
console.log(`stdout: ${process.stdout}`);
console.log(`stderr: ${process.stderr}`);
console.error(`exec error: ${error}`);
throw(error);
}
Expand All @@ -273,13 +272,8 @@ gulp.task('clean', function (done) {

gulp.task('build', gulp.series('clean', 'ext:build', 'ext:install-service'));

gulp.task('install', function() {
return gulp.src(['./package.json'])
.pipe(install());
});

gulp.task('watch', function(){
return gulp.watch(config.paths.project.root + '/src/**/*', gulp.series('build'))
});

// gulp.task('lint', gulp.series('ext:lint'));
gulp.task('lint', gulp.series('ext:lint'));
7 changes: 0 additions & 7 deletions install.js

This file was deleted.

0 comments on commit 2d77ef9

Please sign in to comment.