Reorder gulp cleanup step to avoid breakages

This commit is contained in:
Michael Lumish 2020-11-03 10:10:07 -08:00
parent dc80dc1f17
commit 62e5038fcc
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ const setupPureJSInterop = gulp.series(jsCore.install, protobuf.install, interna
const clean = gulp.series(jsCore.clean, protobuf.clean, jsXds.clean);
const cleanAll = gulp.series(jsCore.cleanAll, internalTest.cleanAll, protobuf.cleanAll, jsXds.cleanAll);
const cleanAll = gulp.series(jsXds.cleanAll, jsCore.cleanAll, internalTest.cleanAll, protobuf.cleanAll);
const nativeTestOnly = gulp.parallel(healthCheck.test);

View File

@ -16,7 +16,7 @@
*/
import { connectivityState as ConnectivityState, status as Status, Metadata, logVerbosity as LogVerbosity, experimental, ChannelOptions } from '@grpc/grpc-js';
import { validateLoadBalancingConfig } from '@grpc/grpc-js/build/src/experimental';
import validateLoadBalancingConfig = experimental.validateLoadBalancingConfig;
import LoadBalancer = experimental.LoadBalancer;
import ChannelControlHelper = experimental.ChannelControlHelper;
import getFirstUsableConfig = experimental.getFirstUsableConfig;