UNPKG

1.56 kBJavaScriptView Raw
1module.exports = {
2 pushCommandConflictMsg: 'We couldn\'t complete the push operation due to conflicts. ' +
3 'Verify that you want to keep the local versions, then run "sfdx force:source:push -f" with the --forceoverwrite (-f) option.',
4 commandDescription: 'push source to a scratch org from the project',
5 commandDescriptionLong: 'Pushes changed source from your project to a scratch org to keep them in sync.',
6 commandHelp:
7 'If the command detects a conflict, it displays the conflicts but does not complete the process. ' +
8 'After reviewing the conflict, rerun the command with the --forceoverwrite parameter.',
9 waitFlagDescriptionLong:
10 '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 ' +
12 'returns control of the terminal window to you. The default is 33 minutes.',
13 forceoverwriteFlagDescription: 'ignore conflict warnings and overwrite changes to scratch org',
14 forceoverwriteFlagDescriptionLong:
15 'Runs the push command even if conflicts exist. Changes in the project overwrite changes in the scratch org.',
16 replacetokensFlagDescription: 'replace tokens in source files prior to deployment',
17 replacetokensFlagDescriptionLong: 'Replaces tokens in source files prior to deployment.',
18 ignorewarningsFlagDescription: 'deploy changes even if warnings are generated',
19 ignorewarningsFlagDescriptionLong: 'Completes the deployment even if warnings are generated.',
20 sourcepushFailed: 'Push failed.'
21};