@nrwl/nx-plugin 13.4.6 → 13.5.0-beta.3

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.
package/README.md CHANGED
@@ -15,20 +15,67 @@
15
15
 
16
16
  <hr>
17
17
 
18
- # Plugin for Creating Nx Plugins
19
-
20
- # Smart, Fast and Extensible Build System
18
+ # Nx: Smart, Fast and Extensible Build System
21
19
 
22
20
  Nx is a next generation build system with first class monorepo support and powerful integrations.
23
21
 
24
-
25
22
  ## What is It?
26
23
 
27
24
  It's an Nx plugin used to build other Nx plugins.
28
25
 
29
26
  Check out the list of community plugins and the documentation on how to create one using `create-nx-plugin` here: [https://nx.dev/community](https://nx.dev/community)
30
27
 
31
- ## Documentation & Resources
28
+ ## Getting Started
29
+
30
+ ### Creating an Nx Workspace
31
+
32
+ **Using `npx`**
33
+
34
+ ```bash
35
+ npx create-nx-workspace
36
+ ```
37
+
38
+ **Using `npm init`**
39
+
40
+ ```bash
41
+ npm init nx-workspace
42
+ ```
43
+
44
+ **Using `yarn create`**
45
+
46
+ ```bash
47
+ yarn create nx-workspace
48
+ ```
49
+
50
+ 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.
51
+
52
+ ```
53
+ ? What to create in the new workspace (Use arrow keys)
54
+ ❯ apps [an empty workspace with no plugins with a layout that works best for building apps]
55
+ core [an empty workspace with no plugins set up to publish npm packages (similar to yarn workspaces)]
56
+ ts [an empty workspace with the JS/TS plugin preinstalled]
57
+ react [a workspace with a single React application]
58
+ angular [a workspace with a single Angular application]
59
+ next.js [a workspace with a single Next.js application]
60
+ gatsby [a workspace with a single Gatsby application]
61
+ nest [a workspace with a single Nest application]
62
+ express [a workspace with a single Express application]
63
+ web components [a workspace with a single app built using web components]
64
+ react-native [a workspace with a single React Native application]
65
+ react-express [a workspace with a full stack application (React + Express)]
66
+ ```
67
+
68
+ Select the preset that works best for you
69
+
70
+ ### Adding Nx to an Existing Monorepo
71
+
72
+ Run:
73
+
74
+ ```bash
75
+ npx add-nx-to-monorepo@latest
76
+ ```
77
+
78
+ ### Documentation & Resources
32
79
 
33
80
  A few links to help you get started:
34
81
 
@@ -37,6 +84,6 @@ A few links to help you get started:
37
84
  - [Official Nx YouTube Channel](https://www.youtube.com/c/Nrwl_io)
38
85
  - [Blog Posts About Nx](https://blog.nrwl.io/nx/home)
39
86
 
40
- <p style="text-align: center;"><a href="https://nx.dev/#learning-materials" target="_blank"><img src="./images/nx-courses-and-videos.svg"
87
+ <p style="text-align: center;"><a href="https://nx.dev/#learning-materials" target="_blank"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-courses-and-videos.svg"
41
88
  width="100%" alt="Nx - Smart, Fast and Extensible Build System"></a></p>
42
89
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nrwl/nx-plugin",
3
- "version": "13.4.6",
3
+ "version": "13.5.0-beta.3",
4
4
  "description": "Plugin for creating plugins for Nx :)",
5
5
  "repository": {
6
6
  "type": "git",
@@ -27,10 +27,10 @@
27
27
  "migrations": "./migrations.json"
28
28
  },
29
29
  "dependencies": {
30
- "@nrwl/devkit": "13.4.6",
31
- "@nrwl/jest": "13.4.6",
32
- "@nrwl/linter": "13.4.6",
33
- "@nrwl/node": "13.4.6",
30
+ "@nrwl/devkit": "13.5.0-beta.3",
31
+ "@nrwl/jest": "13.5.0-beta.3",
32
+ "@nrwl/linter": "13.5.0-beta.3",
33
+ "@nrwl/node": "13.5.0-beta.3",
34
34
  "fs-extra": "^9.1.0",
35
35
  "rxjs": "^6.5.4",
36
36
  "tslib": "^2.3.0"
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.nxVersion = void 0;
4
- exports.nxVersion = '13.4.6';
4
+ exports.nxVersion = '13.5.0-beta.3';
5
5
  //# sourceMappingURL=versions.js.map