mirror of
https://github.com/grpc/grpc-node.git
synced 2025-12-08 18:23:54 +00:00
11 lines
293 B
JavaScript
11 lines
293 B
JavaScript
const _gulp = require('gulp');
|
|
const help = require('gulp-help');
|
|
const run = require('gulp-run');
|
|
|
|
const gulp = help(_gulp);
|
|
|
|
gulp.task('health-check.link', 'Link local copy of grpc', () => {
|
|
return run(`npm link ${__dirname}/grpc-native-core`).exec()
|
|
.pipe(gulp.dest('output'));
|
|
});
|