Skip to content

Commit a7dc61d

Browse files
authored
Update DEVELOPING.md
1 parent 7f5b9db commit a7dc61d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

DEVELOPING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
1. Build and lint the code: `yarn build`
3030
1. Create a branch off main for new work: `git checkout -b <branch_name>` _Suggestion: use branch_name format of initials/work-title_. For external contributors, please fork the main branch of the repo instead and PR the fork to the main branch.
3131
1. Make code changes and build: `yarn build`
32-
1. Run changed commands: e.g., `./bin/dev.js package:create -h`
32+
1. Run changed commands: e.g., `./bin/run.js package:create -h`
3333
1. Write tests and run: `yarn test` (unit) and/or `yarn test:nuts` (NUTs)
3434
1. Show all changed files: `git status`
3535
1. Add all files to staging: `git add .`
@@ -59,11 +59,11 @@ When you want to use a branch of the packaging library in this plugin to test ch
5959

6060
## Running Commands
6161

62-
To run your modified plugin commands locally, use `./bin/dev.js` or `./bin/dev.cmd` (Windows).
62+
To run your modified plugin commands locally, use `./bin/run.js` or `./bin/run.cmd` (Windows). Note that you must compile any code changes (`yarn compile`) before seeing those changes with `./bin/run.js`.
6363

6464
```bash
65-
# Run using local dev file.
66-
./bin/dev.js package:create --help
65+
# Run using local script.
66+
./bin/run.js package:create --help
6767
```
6868

6969
There should be no differences when running via the Salesforce CLI or using the local scripts. However, it can be useful to link the plugin to do some additional testing or run your commands from anywhere on your machine.

0 commit comments

Comments
 (0)