nx 13.4.7-beta.1 → 13.5.0-beta.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -75
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -15,81 +15,8 @@
15
15
 
16
16
  <hr>
17
17
 
18
- # Nx CLI
19
-
20
- This is an alias of the [@nrwl/cli](https://www.npmjs.com/package/@nrwl/cli) package. Please see [@nrwl/cli](https://www.npmjs.com/package/@nrwl/cli) for more information.
21
-
22
- # Smart, Fast and Extensible Build System
18
+ # Nx: Smart, Fast and Extensible Build System
23
19
 
24
20
  Nx is a next generation build system with first class monorepo support and powerful integrations.
25
21
 
26
-
27
- ## Getting Started
28
-
29
- ### Creating an Nx Workspace
30
-
31
- **Using `npx`**
32
-
33
- ```bash
34
- npx create-nx-workspace
35
- ```
36
-
37
- **Using `npm init`**
38
-
39
- ```bash
40
- npm init nx-workspace
41
- ```
42
-
43
- **Using `yarn create`**
44
-
45
- ```bash
46
- yarn create nx-workspace
47
- ```
48
-
49
- The `create-nx-workspace` command will ask you to select a preset, which will configure some plugins and create your applications to help you get started.
50
-
51
- ```
52
- ? What to create in the new workspace (Use arrow keys)
53
- ❯ apps [an empty workspace with no plugins with a layout that works best for building apps]
54
- core [an empty workspace with no plugins set up to publish npm packages (similar to yarn workspaces)]
55
- ts [an empty workspace with the JS/TS plugin preinstalled]
56
- react [a workspace with a single React application]
57
- angular [a workspace with a single Angular application]
58
- next.js [a workspace with a single Next.js application]
59
- gatsby [a workspace with a single Gatsby application]
60
- nest [a workspace with a single Nest application]
61
- express [a workspace with a single Express application]
62
- web components [a workspace with a single app built using web components]
63
- react-native [a workspace with a single React Native application]
64
- react-express [a workspace with a full stack application (React + Express)]
65
- ```
66
-
67
- Select the preset that works best for you.
68
-
69
- ### Adding Nx to an Existing Monorepo
70
-
71
- Run:
72
-
73
- ```bash
74
- npx add-nx-to-monorepo@latest
75
- ```
76
-
77
-
78
- ### Serving Application
79
-
80
- - Run `nx serve myapp` to serve the newly generated application!
81
- - Run `nx test myapp` to test it.
82
- - Run `nx e2e myapp-e2e` to run e2e tests for it.
83
-
84
- ## Documentation & Resources
85
-
86
- A few links to help you get started:
87
-
88
- - [Nx.Dev: Documentation, Guides, Interactive Tutorials](https://nx.dev)
89
- - [Tutorial: Adding Nx to an Existing Monorepo](https://nx.dev/migration/adding-to-monorepo)
90
- - [Official Nx YouTube Channel](https://www.youtube.com/c/Nrwl_io)
91
- - [Blog Posts About Nx](https://blog.nrwl.io/nx/home)
92
-
93
- <p style="text-align: center;"><a href="https://nx.dev/#learning-materials" target="_blank"><img src="./images/nx-courses-and-videos.svg"
94
- width="100%" alt="Nx - Smart, Fast and Extensible Build System"></a></p>
95
-
22
+ {{content}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nx",
3
- "version": "13.4.7-beta.1",
3
+ "version": "13.5.0-beta.4",
4
4
  "description": "Smart, Fast and Extensible Build System",
5
5
  "repository": {
6
6
  "type": "git",
@@ -28,7 +28,7 @@
28
28
  },
29
29
  "homepage": "https://nx.dev",
30
30
  "dependencies": {
31
- "@nrwl/cli": "13.4.7-beta.1"
31
+ "@nrwl/cli": "13.5.0-beta.4"
32
32
  },
33
33
  "main": "./bin/nx.js",
34
34
  "typings": "./bin/nx.d.ts"