1616<!-- START doctoc generated TOC please keep comment here to allow auto update -->
1717<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
1818
19- - [ Getting started] ( #getting-started )
20- - [ Create a new Nx workspace] ( #create-a-new-nx-workspace )
21- - [ Install NativeScript plugin] ( #install-nativescript-plugin )
22- - [ Create an app] ( #create-an-app )
23- - [ ` --framework [angular] ` ] ( #--framework-angular )
24- - [ ` --groupByName ` ] ( #--groupbyname )
25- - [ Develop on simulators and devices] ( #develop-on-simulators-and-devices )
26- - [ Configuration options] ( #configuration-options )
27- - [ Run with a specific configuration] ( #run-with-a-specific-configuration )
28- - [ Run tests] ( #run-tests )
29- - [ Create a build] ( #create-a-build )
30- - [ Clean] ( #clean )
31- - [ Create NativeScript library] ( #create-nativescript-library )
32- - [ ` --groupByName ` ] ( #--groupbyname-1 )
33- - [ Using NativeScript plugins] ( #using-nativescript-plugins )
34- - [ Installing NativeScript plugins at app-level] ( #installing-nativescript-plugins-at-app-level )
35- - [ Installing NativeScript plugins at workspace-level] ( #installing-nativescript-plugins-at-workspace-level )
36- - [ Known issues] ( #known-issues )
19+ - [ NativeScript Plugin for Nx] ( #nativescript-plugin-for-nx )
20+ - [ Table of Contents] ( #table-of-contents )
21+ - [ Getting started] ( #getting-started )
22+ - [ Create a new Nx workspace] ( #create-a-new-nx-workspace )
23+ - [ Install NativeScript plugin] ( #install-nativescript-plugin )
24+ - [ Create an app] ( #create-an-app )
25+ - [ ` --framework [angular|vanilla] ` ] ( #--framework-angularvanilla )
26+ - [ ` --groupByName ` ] ( #--groupbyname )
27+ - [ Develop on simulators and devices] ( #develop-on-simulators-and-devices )
28+ - [ Configuration options] ( #configuration-options )
29+ - [ Run with a specific configuration] ( #run-with-a-specific-configuration )
30+ - [ Run tests] ( #run-tests )
31+ - [ Create a build] ( #create-a-build )
32+ - [ Clean] ( #clean )
33+ - [ Create NativeScript library] ( #create-nativescript-library )
34+ - [ ` --groupByName ` ] ( #--groupbyname-1 )
35+ - [ Using NativeScript plugins] ( #using-nativescript-plugins )
36+ - [ Installing NativeScript plugins at app-level] ( #installing-nativescript-plugins-at-app-level )
37+ - [ Installing NativeScript plugins at workspace-level] ( #installing-nativescript-plugins-at-workspace-level )
38+ - [ Known issues] ( #known-issues )
3739
3840<!-- END doctoc generated TOC please keep comment here to allow auto update -->
3941
@@ -53,16 +55,26 @@ Now create a Nx workspace using the yarn command expression in the following sec
5355
5456``` sh
5557# Using npm
56- npx create-nx-workspace@latest --cli=nx --preset=empty
58+ npx create-nx-workspace@latest
5759
5860# Using yarn
59- yarn create nx-workspace --cli=nx --preset=empty --packageManager=yarn
61+ yarn create-nx-workspace@latest
6062```
6163
6264If you run into any issue with latest Nx workspace version you may want to try the last known stable version with the following:
6365
6466``` sh
65- npx
[email protected] --cli=nx --preset=empty
67+ 68+
69+ Need to install the following packages:
70+ 71+ Ok to proceed? (y) y
72+
73+ > NX Let' s create a new workspace [https://nx.dev/getting-started/intro]
74+
75+ ✔ Choose your style · integrated
76+ ✔ What to create in the new workspace · apps
77+ ✔ Enable distributed caching to make your CI faster · No
6678```
6779
6880### Install NativeScript plugin
0 commit comments