-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #211 from Accenture/develop
Release v2.1.1
- Loading branch information
Showing
35 changed files
with
3,003 additions
and
2,706 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"tabWidth": 4, | ||
"semi": true, | ||
"singleQuote": false, | ||
"trailingComma": "none", | ||
"printWidth": 120, | ||
"useTabs": true, | ||
"endOfLine":"auto", | ||
"bracketSpacing": true, | ||
"arrowParens": "avoid" | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
export const containersConfig: { | ||
statusBarDevToolsName: string, | ||
statusBarDevToolsTitle: string, | ||
statusBarDevToolsCommand: string, | ||
statusBarDevToolsCredentialBUName: string, | ||
statusBarDevToolsCredentialBUTitle: string, | ||
statusBarDevToolsCredentialBUCommand: string, | ||
statusBarDevToolsCommandName: string, | ||
statusBarDevToolsCommandTitle: string, | ||
statusBarDevToolsCommandCommand: string, | ||
statusBarDevToolsInitializeName: string, | ||
statusBarDevToolsInitializeTitle: string, | ||
statusBarDevToolsInitializeCommand: string, | ||
contextMenuRetrieveCommand: string, | ||
contextMenuDeployCommand: string, | ||
contextMenuCopyToBUCommand: string | ||
statusBarDevToolsName: string; | ||
statusBarDevToolsTitle: string; | ||
statusBarDevToolsCommand: string; | ||
statusBarDevToolsCredentialBUName: string; | ||
statusBarDevToolsCredentialBUTitle: string; | ||
statusBarDevToolsCredentialBUCommand: string; | ||
statusBarDevToolsCommandName: string; | ||
statusBarDevToolsCommandTitle: string; | ||
statusBarDevToolsCommandCommand: string; | ||
statusBarDevToolsInitializeName: string; | ||
statusBarDevToolsInitializeTitle: string; | ||
statusBarDevToolsInitializeCommand: string; | ||
contextMenuRetrieveCommand: string; | ||
contextMenuDeployCommand: string; | ||
contextMenuCopyToBUCommand: string; | ||
} = { | ||
statusBarDevToolsName: "mcdev", | ||
statusBarDevToolsTitle: "mcdev", | ||
statusBarDevToolsCommand: "sfmc-devtools-vscext.devtoolsSBMcdev", | ||
statusBarDevToolsCredentialBUName: "devtoolscredentialbu", | ||
statusBarDevToolsCredentialBUTitle: "Credential/BU", | ||
statusBarDevToolsCredentialBUCommand: "sfmc-devtools-vscext.devtoolsSBCredentialBU", | ||
statusBarDevToolsCommandName: "devtoolscommand", | ||
statusBarDevToolsCommandTitle: "Command", | ||
statusBarDevToolsCommandCommand: "sfmc-devtools-vscext.devtoolsSBCommand", | ||
statusBarDevToolsInitializeName: "devtoolsinitialize", | ||
statusBarDevToolsInitializeTitle: "Initialize", | ||
statusBarDevToolsInitializeCommand: "sfmc-devtools-vscext.devtoolsSBInitialize", | ||
contextMenuRetrieveCommand: "sfmc-devtools-vscext.devtoolsCMRetrieve", | ||
contextMenuDeployCommand: "sfmc-devtools-vscext.devtoolsCMDeploy", | ||
contextMenuCopyToBUCommand: "sfmc-devtools-vscext.devtoolsCMCopyToBU" | ||
}; | ||
statusBarDevToolsName: "mcdev", | ||
statusBarDevToolsTitle: "mcdev", | ||
statusBarDevToolsCommand: "sfmc-devtools-vscext.devtoolsSBMcdev", | ||
statusBarDevToolsCredentialBUName: "devtoolscredentialbu", | ||
statusBarDevToolsCredentialBUTitle: "Credential/BU", | ||
statusBarDevToolsCredentialBUCommand: "sfmc-devtools-vscext.devtoolsSBCredentialBU", | ||
statusBarDevToolsCommandName: "devtoolscommand", | ||
statusBarDevToolsCommandTitle: "Command", | ||
statusBarDevToolsCommandCommand: "sfmc-devtools-vscext.devtoolsSBCommand", | ||
statusBarDevToolsInitializeName: "devtoolsinitialize", | ||
statusBarDevToolsInitializeTitle: "Initialize", | ||
statusBarDevToolsInitializeCommand: "sfmc-devtools-vscext.devtoolsSBInitialize", | ||
contextMenuRetrieveCommand: "sfmc-devtools-vscext.devtoolsCMRetrieve", | ||
contextMenuDeployCommand: "sfmc-devtools-vscext.devtoolsCMDeploy", | ||
contextMenuCopyToBUCommand: "sfmc-devtools-vscext.devtoolsCMCopyToBU" | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
export enum InstallDevToolsResponseOptions { | ||
"Yes" = 1, | ||
"No" = 0 | ||
"Yes" = 1, | ||
"No" = 0 | ||
} | ||
|
||
export const installerConfig: { | ||
package: { mcdev: { version: string, install: string } }, | ||
messages: { | ||
noDevToolsInstalled: string, | ||
askUserToInstallDevTools: string, | ||
installingDevToolsProgress: string | ||
} | ||
package: { mcdev: { version: string; install: string } }; | ||
messages: { | ||
noDevToolsInstalled: string; | ||
askUserToInstallDevTools: string; | ||
installingDevToolsProgress: string; | ||
}; | ||
} = { | ||
package: { | ||
mcdev: { version: "mcdev --version", install: "npm install -g mcdev" } | ||
}, | ||
messages: { | ||
noDevToolsInstalled: "SFMC DevTools could not be located on your system.", | ||
askUserToInstallDevTools: "Would you like to install SFMC DevTools?", | ||
installingDevToolsProgress: "Please wait while SFMC DevTools is being installed..." | ||
} | ||
}; | ||
package: { | ||
mcdev: { version: "mcdev --version", install: "npm install -g mcdev" } | ||
}, | ||
messages: { | ||
noDevToolsInstalled: "SFMC DevTools could not be located on your system.", | ||
askUserToInstallDevTools: "Would you like to install SFMC DevTools?", | ||
installingDevToolsProgress: "Please wait while SFMC DevTools is being installed..." | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,43 @@ | ||
export const mainConfig: { | ||
credentialsFilename: string, | ||
requiredFiles: string[], | ||
fileExtensions: string[], | ||
noCopyFileExtensions: string[], | ||
allPlaceholder: string, | ||
extensionsDependencies: string[], | ||
messages: { | ||
selectedCredentialsBU: string, | ||
selectCredential: string, | ||
selectBusinessUnit: string, | ||
selectCommandType: string, | ||
selectCommand: string, | ||
initDevTools: string, | ||
initiatingDevTools: string, | ||
copyToBUInput: string, | ||
runningCommand: string, | ||
successRunningCommand: string, | ||
failureRunningCommand: string, | ||
unsupportedMetadataType: string | ||
} | ||
credentialsFilename: string; | ||
requiredFiles: string[]; | ||
fileExtensions: string[]; | ||
noCopyFileExtensions: string[]; | ||
allPlaceholder: string; | ||
extensionsDependencies: string[]; | ||
messages: { | ||
selectedCredentialsBU: string; | ||
selectCredential: string; | ||
selectBusinessUnit: string; | ||
selectCommandType: string; | ||
selectCommand: string; | ||
initDevTools: string; | ||
initiatingDevTools: string; | ||
copyToBUInput: string; | ||
runningCommand: string; | ||
successRunningCommand: string; | ||
failureRunningCommand: string; | ||
unsupportedMetadataType: string; | ||
}; | ||
} = { | ||
credentialsFilename: ".mcdevrc.json", | ||
requiredFiles: [".mcdevrc.json", ".mcdev-auth.json"], | ||
fileExtensions: ["meta.json", "meta.sql", "meta.html", "meta.ssjs", "meta.amp", "doc.md"], | ||
noCopyFileExtensions: ["doc.md"], | ||
allPlaceholder: "*All*", | ||
extensionsDependencies: ["IBM.output-colorizer"], | ||
messages: { | ||
selectedCredentialsBU: "Select a Credential/BU before running the command", | ||
selectCredential: "Select one of the credentials below...", | ||
selectBusinessUnit: "Select all or one of the business units below...", | ||
selectCommandType: "Select one DevTools command type...", | ||
selectCommand: "Select one DevTools Command...", | ||
initDevTools: "Do you wish to initialize SFMC DevTools project in the current directory?", | ||
initiatingDevTools: "Initiating SFMC DevTools project...", | ||
copyToBUInput: "Select one of the actions below...", | ||
runningCommand: "Running DevTools Command...", | ||
successRunningCommand: "DevTools Command has run successfully.", | ||
failureRunningCommand: "Oh no. Something went wrong while running DevTools Command.", | ||
unsupportedMetadataType: "SFMC DevTools currently does not support one or more of the selected metadata types." | ||
} | ||
}; | ||
credentialsFilename: ".mcdevrc.json", | ||
requiredFiles: [".mcdevrc.json", ".mcdev-auth.json"], | ||
fileExtensions: ["meta.json", "meta.sql", "meta.html", "meta.ssjs", "meta.amp", "doc.md"], | ||
noCopyFileExtensions: ["doc.md"], | ||
allPlaceholder: "*All*", | ||
extensionsDependencies: ["IBM.output-colorizer"], | ||
messages: { | ||
selectedCredentialsBU: "Select a Credential/BU before running the command", | ||
selectCredential: "Select one of the credentials below...", | ||
selectBusinessUnit: "Select all or one of the business units below...", | ||
selectCommandType: "Select one DevTools command type...", | ||
selectCommand: "Select one DevTools Command...", | ||
initDevTools: "Do you wish to initialize SFMC DevTools project in the current directory?", | ||
initiatingDevTools: "Initiating SFMC DevTools project...", | ||
copyToBUInput: "Select one of the actions below...", | ||
runningCommand: "Running DevTools Command...", | ||
successRunningCommand: "DevTools Command has run successfully.", | ||
failureRunningCommand: "Oh no. Something went wrong while running DevTools Command.", | ||
unsupportedMetadataType: "SFMC DevTools currently does not support one or more of the selected metadata types." | ||
} | ||
}; |
Oops, something went wrong.