Skip to content

Commit 4a7d239

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

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

plugins/plugin-workspace-guide.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -126,15 +126,15 @@ At the prompt, enter the name of the package to add an `angular` folder to it wi
126126

127127
## Migrating your plugin workspace
128128

129-
One of the additional nice benefits of using plugin workspaces is updating them is a made simple and efficient through Nx tooling. The TSC maintains the plugin workspace migrations so whenever one is available you can update your plugin workspace (which will often contain auto version bumps of supporting packages to latest NativeScript versions, configuration improvements and other welcome additions to help you create and maintain great NativeScript plugins):
129+
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
132132
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.
136136

137-
Sometimes `@nativescript/plugin-tools` updates will not contain any migrations so you won't always see migrations available but if it states they are available you can run them as the message states:
137+
Sometimes `@nativescript/plugin-tools` updates won't need any migrations so you won't always see migrations available but if it states they are available you can run them as the message states:
138138

139139
```cli
140140
// install latest updates
@@ -144,9 +144,9 @@ npm install
144144
nx migrate --run-migrations=migrations.json
145145
```
146146

147-
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 subtle things to adjust on your own.
147+
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.
148148

149-
After running migrations you can always _delete_ the `migrations.json` folder as it will no longer be used. A `migrations.json` file is always generated if migrations are available to run and after applied you no longer need that file.
149+
After running migrations you can always _delete_ the `migrations.json` file as it will no longer be used. A `migrations.json` file is always generated if migrations are available to run. After applied, you no longer need the file.
150150

151151
### Migration 3.0.0 (Released March 8, 2022)
152152

@@ -165,9 +165,9 @@ packages/picker/angular/picker.directive.ts:58:14 - error NG3001: Unsupported pr
165165
58 export class PickerFieldComponent extends ListViewComponent implements AfterContentInit {
166166
~~~~~~~~~~~~~~~~~~~~~
167167
168-
at compileSourceFiles (/Users/nstudio/Documents/github/NativeScript/plugins/node_modules/ng-packagr/lib/ngc/compile-source-files.js:141:15)
169-
at async /Users/nstudio/Documents/github/NativeScript/plugins/node_modules/ng-packagr/lib/ng-package/entry-point/compile-ngc.transform.js:59:13
170-
at async /Users/nstudio/Documents/github/NativeScript/plugins/node_modules/ng-packagr/lib/graph/transform.js:7:29
168+
at compileSourceFiles (/NativeScript/plugins/node_modules/ng-packagr/lib/ngc/compile-source-files.js:141:15)
169+
at async /NativeScript/plugins/node_modules/ng-packagr/lib/ng-package/entry-point/compile-ngc.transform.js:59:13
170+
at async /NativeScript/plugins/node_modules/ng-packagr/lib/graph/transform.js:7:29
171171
ERROR: Something went wrong in @nrwl/run-commands - Command failed: node tools/scripts/build-finish.ts picker
172172
```
173173

0 commit comments

Comments
 (0)