File tree Expand file tree Collapse file tree
packages/cli/src/lib/deploy Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -77,11 +77,11 @@ export class Deployer {
7777
7878 this . _sanitizePackages ( packageNames ) ;
7979
80- await this . _cacheDeployModules ( packageNames ) ;
80+ await this . cacheDeployModules ( packageNames ) ;
8181
8282 const packageMapEntries = await Promise . all (
8383 packageNames . map ( async ( packageName ) => {
84- const deployerPackage = await this . _getDeployModule ( packageName ) ;
84+ const deployerPackage = await this . getDeployModule ( packageName ) ;
8585 return [ packageName , deployerPackage ] ;
8686 } )
8787 ) ;
@@ -143,7 +143,7 @@ export class Deployer {
143143 }
144144 }
145145
146- private async _getDeployModule (
146+ private async getDeployModule (
147147 moduleName : string
148148 ) : Promise < {
149149 deployModule : DeployModule ;
@@ -171,7 +171,7 @@ export class Deployer {
171171 } ;
172172 }
173173
174- private async _cacheDeployModules ( modules : string [ ] ) : Promise < void > {
174+ private async cacheDeployModules ( modules : string [ ] ) : Promise < void > {
175175 if ( this . _config . defaultModulesCached ) {
176176 return ;
177177 }
You can’t perform that action at this time.
0 commit comments