File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ new LaunchDarklyUtils().create(process.env.LAUNCHDARKLY_API_TOKEN, log).then(ldU
2727 . description ( 'get all the projects associated with the account' )
2828 . action ( ( ) => {
2929 ldUtils . projects . getProjects ( ) . then ( response => {
30- console . log ( json . plain ( reponse ) ) ;
30+ console . log ( json . plain ( response ) ) ;
3131 } ) ;
3232 } ) ;
3333
@@ -57,7 +57,7 @@ new LaunchDarklyUtils().create(process.env.LAUNCHDARKLY_API_TOKEN, log).then(ldU
5757 defaultClientSideAvailability
5858 )
5959 . then ( response => {
60- console . log ( json . plain ( reponse ) ) ;
60+ console . log ( json . plain ( response ) ) ;
6161 } ) ;
6262 }
6363 ) ;
@@ -67,7 +67,7 @@ new LaunchDarklyUtils().create(process.env.LAUNCHDARKLY_API_TOKEN, log).then(ldU
6767 . description ( 'delete a project by the specified projectKey' )
6868 . action ( projectKey => {
6969 ldUtils . projects . deleteProject ( projectKey ) . then ( response => {
70- console . log ( json . plain ( reponse ) ) ;
70+ console . log ( json . plain ( response ) ) ;
7171 } ) ;
7272 } ) ;
7373
You can’t perform that action at this time.
0 commit comments