UNPKG

1.2 kBJavaScriptView Raw
1module.exports = {
2 commandDescription: 'pull source from the scratch org to the project',
3 commandDescriptionLong: 'Pulls changed source from the scratch org to your project to keep them in sync.',
4 commandHelp: 'If the command detects a conflict, it displays the conflicts but does not complete the process. ' +
5 'After reviewing the conflict, rerun the command with the --forceoverwrite parameter.',
6 forceoverwriteFlagDescription: 'ignore conflict warnings and overwrite changes to the project',
7 forceoverwriteFlagDescriptionLong:
8 'Runs the pull command even if conflicts exist. Changes in the scratch org overwrite changes in the project.',
9 waitFlagDescriptionLong:
10 'The number of minutes to wait for the command to complete and display ' +
11 'results to the terminal window. If the command continues to run after the wait period, the CLI returns ' +
12 'control of the terminal window to you. The default is 33 minutes.',
13 NonScratchOrgPull: "We can't retrieve your changes. \"force:source:pull\" is only available for orgs that have source tracking enabled. Use \"force:source:retrieve\" or \"force:mdapi:retrieve\" instead."
14};