This repository was archived by the owner on Nov 5, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +4269
-4
lines changed
Expand file tree Collapse file tree 5 files changed +4269
-4
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " mo-dx-plugin" ,
3- "version" : " 0.2.5 " ,
3+ "version" : " 0.2.6 " ,
44 "author" : " Mohith Shrivastava" ,
55 "bugs" : " https://github.com/ForceProjects/mo-dx-plugin/issues" ,
66 "dependencies" : {
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ export default class AuraDeploy extends SfdxCommand {
110110 auraDefinitions = auraDefinitions . length > 0 ? auraDefinitions : [ ] ;
111111 try {
112112 await upsertAuraDefinition ( auraDefinitions , fileBodyArray , auraDefinitionBundles [ 0 ] . Id ) ;
113- this . ux . stopSpinner ( chalk . bold . greenBright ( 'AuraBundle Deployed SuccessFully ✔' ) ) ;
113+ this . ux . stopSpinner ( chalk . bold . greenBright ( 'AuraBundle Deployed Successfully ✔' ) ) ;
114114 } catch ( exception ) {
115115 this . ux . stopSpinner ( chalk . bold . redBright ( 'Aura Component Save Failed ✖' ) ) ;
116116 displaylog ( exception , this . ux ) ;
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ export default class LWCDeploy extends SfdxCommand {
123123 lwcResources = lwcResources . length > 0 ? lwcResources : [ ] ;
124124 try {
125125 await upsertLWCDefinition ( lwcResources , fileBodyArray , lwcBundles [ 0 ] . Id ) ;
126- this . ux . stopSpinner ( chalk . bold . greenBright ( 'Lighnting Web Components Deployed SuccessFully ✔' ) ) ;
126+ this . ux . stopSpinner ( chalk . bold . greenBright ( 'Lighnting Web Components Deployed Successfully ✔' ) ) ;
127127 // console.log(auraDefinitionsResult);
128128 } catch ( exception ) {
129129 this . ux . stopSpinner ( chalk . bold . redBright ( 'Failed ✖' ) ) ;
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ export default class StaticResourceDeploy extends SfdxCommand {
126126 await conn . tooling . sobject ( "StaticResource" ) . create ( staticresource ) ;
127127 }
128128 this . ux . stopSpinner (
129- chalk . bold . greenBright ( "StaticResource Deployed SuccessFully ✔" )
129+ chalk . bold . greenBright ( "StaticResource Deployed Successfully ✔" )
130130 ) ;
131131 } catch ( e ) {
132132 this . ux . stopSpinner (
You can’t perform that action at this time.
0 commit comments