Skip to content
This repository was archived by the owner on Nov 5, 2023. It is now read-only.

Commit 1075cdc

Browse files
author
Mohith Shrivastava
committed
fix typo
1 parent 80c6b64 commit 1075cdc

File tree

5 files changed

+4269
-4
lines changed

5 files changed

+4269
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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": {

src/commands/deploy/aura.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

src/commands/deploy/lwc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 ✖'));

src/commands/deploy/staticresource.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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(

0 commit comments

Comments
 (0)