You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: DEVELOPING.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@
29
29
1. Build and lint the code: `yarn build`
30
30
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.
31
31
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`
@@ -59,11 +59,11 @@ When you want to use a branch of the packaging library in this plugin to test ch
59
59
60
60
## Running Commands
61
61
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`.
63
63
64
64
```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
67
67
```
68
68
69
69
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