Skip to content

Commit bb1ebe6

Browse files
committed
chore: cleanup language on plugin workspace guide
1 parent 4a7d239 commit bb1ebe6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/plugin-workspace-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ At the prompt, enter the name of the package to add an `angular` folder to it wi
129129
One of the nice benefits of using our plugin workspaces is updating them is made simple and efficient through Nx tooling. The TSC maintains plugin workspace migrations so whenever one is available you can update your plugin workspace with just a few simple commands (which will often provide dependency version bumps of supporting packages to latest NativeScript versions, configuration improvements, as well as other welcome additions to help you create and maintain NativeScript plugins):
130130

131131
```cli
132-
nx migrate @nativescript/plugin-tools
132+
npx nx migrate @nativescript/plugin-tools
133133
```
134134

135135
That will fetch `latest` version of `plugin-tools`, analyze the package to see if any migrations are available and then print a message if there are migrations to run.
@@ -141,7 +141,7 @@ Sometimes `@nativescript/plugin-tools` updates won't need any migrations so you
141141
npm install
142142
143143
// now run the migrations
144-
nx migrate --run-migrations=migrations.json
144+
npx nx migrate --run-migrations=migrations.json
145145
```
146146

147147
Your plugin workspace will now be up to date regarding various configurations, settings and core dependencies. Depending on other customizations you made there may be other things to adjust on your own.

0 commit comments

Comments
 (0)