@salesforce/sfdx-diff
v0.0.6
Published
Salesforce CLI (oclif) plugin for diffing source
Downloads
95
Maintainers
Readme
sfdx-diff
Salesforce CLI (oclif) plugin for diffing source. Enables you to diff your local source file against its version in an org.
$ npm install -g sfdx-diff
$ sfdx COMMAND
running command...
$ sfdx (-v|--version|version)
sfdx-diff/0.0.2 darwin-x64 node-v10.15.0
$ sfdx --help [COMMAND]
USAGE
$ sfdx COMMAND
...
Usage
Diff a local source file against the version in your org
USAGE
$ sfdx force:source:diff -p <string> [-u <string>] [--apiversion <string>] [--json] [--loglevel
trace|debug|info|warn|error|fatal]
OPTIONS
-p, --sourcepath=sourcepath (required) the path to the source file to diff
-u, --targetusername=targetusername username or alias for the target org; overrides default target org
--apiversion=apiversion override the api version used for api requests made by this command
--json format output as json
--loglevel=(trace|debug|info|warn|error|fatal) [default: warn] logging level for this command invocation
See code: src/commands/force/source/diff.ts
Debugging the plugin
We recommend using the Visual Studio Code (VS Code) IDE for your plugin development. Included in the .vscode
directory of this plugin is a launch.json
config file, which allows you to attach a debugger to the node process when running your commands.
To debug the force:source:diff
command:
- Start the inspector
If you linked your plugin to the sfdx cli, call your command with the dev-suspend
switch:
$ sfdx force:source:diff -p file/path/to/metadata --dev-suspend
Alternatively, to call your command using the bin/run
script, set the NODE_OPTIONS
environment variable to --inspect-brk
when starting the debugger:
$ NODE_OPTIONS=--inspect-brk bin/run force:source:diff -p file/path/to/metadata
- Set some breakpoints in your command code
- Click on the Debug icon in the Activity Bar on the side of VS Code to open up the Debug view.
- In the upper left hand corner of VS Code, verify that the "Attach to Remote" launch configuration has been chosen.
- Hit the green play button to the left of the "Attach to Remote" launch configuration window. The debugger should now be suspended on the first line of the program.
- Hit the green play button at the top middle of VS Code (this play button will be to the right of the play button that you clicked in step #5). Congrats, you are debugging!
Developing your plugin
From your sfdx-diff project...
$ yarn install
$ yarn run prepack
List the plugins currently linked to the cli...
$ sfdx plugins
To add your plugin...
$ sfdx plugins:link
To unlink your plugin...
$ sfdx plugins:unlink sfdx-diff