@nrwl/next 13.5.0 → 13.5.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
@@ -21,4 +21,64 @@ Nx is a next generation build system with first class monorepo support and power
21
21
 
22
22
  This package is a [Next.js plugin for Nx](https://nx.dev/next/overview).
23
23
 
24
- {{content}
24
+ ## Getting Started
25
+
26
+ ### Creating an Nx Workspace
27
+
28
+ **Using `npx`**
29
+
30
+ ```bash
31
+ npx create-nx-workspace
32
+ ```
33
+
34
+ **Using `npm init`**
35
+
36
+ ```bash
37
+ npm init nx-workspace
38
+ ```
39
+
40
+ **Using `yarn create`**
41
+
42
+ ```bash
43
+ yarn create nx-workspace
44
+ ```
45
+
46
+ 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.
47
+
48
+ ```
49
+ ? What to create in the new workspace (Use arrow keys)
50
+ ❯ apps [an empty workspace with no plugins with a layout that works best for building apps]
51
+ core [an empty workspace with no plugins set up to publish npm packages (similar to yarn workspaces)]
52
+ ts [an empty workspace with the JS/TS plugin preinstalled]
53
+ react [a workspace with a single React application]
54
+ angular [a workspace with a single Angular application]
55
+ next.js [a workspace with a single Next.js application]
56
+ nest [a workspace with a single Nest application]
57
+ express [a workspace with a single Express application]
58
+ web components [a workspace with a single app built using web components]
59
+ react-native [a workspace with a single React Native application]
60
+ react-express [a workspace with a full stack application (React + Express)]
61
+ ```
62
+
63
+ Select the preset that works best for you
64
+
65
+ ### Adding Nx to an Existing Monorepo
66
+
67
+ Run:
68
+
69
+ ```bash
70
+ npx add-nx-to-monorepo@latest
71
+ ```
72
+
73
+ ## Documentation & Resources
74
+
75
+ A few links to help you get started:
76
+
77
+ - [Nx.Dev: Documentation, Guides, Interactive Tutorials](https://nx.dev)
78
+ - [Tutorial: Adding Nx to an Existing Monorepo](https://nx.dev/migration/adding-to-monorepo)
79
+ - [Official Nx YouTube Channel](https://www.youtube.com/c/Nrwl_io)
80
+ - [Blog Posts About Nx](https://blog.nrwl.io/nx/home)
81
+
82
+ <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"
83
+ width="100%" alt="Nx - Smart, Fast and Extensible Build System"></a></p>
84
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nrwl/next",
3
- "version": "13.5.0",
3
+ "version": "13.5.3",
4
4
  "description": "Next.js Plugin for Nx",
5
5
  "repository": {
6
6
  "type": "git",
@@ -34,13 +34,13 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "@babel/plugin-proposal-decorators": "^7.14.5",
37
- "@nrwl/react": "13.5.0",
38
- "@nrwl/cypress": "13.5.0",
39
- "@nrwl/devkit": "13.5.0",
40
- "@nrwl/jest": "13.5.0",
41
- "@nrwl/linter": "13.5.0",
42
- "@nrwl/web": "13.5.0",
43
- "@nrwl/workspace": "13.5.0",
37
+ "@nrwl/react": "13.5.3",
38
+ "@nrwl/cypress": "13.5.3",
39
+ "@nrwl/devkit": "13.5.3",
40
+ "@nrwl/jest": "13.5.3",
41
+ "@nrwl/linter": "13.5.3",
42
+ "@nrwl/web": "13.5.3",
43
+ "@nrwl/workspace": "13.5.3",
44
44
  "@svgr/webpack": "^6.1.2",
45
45
  "chalk": "4.1.0",
46
46
  "eslint-config-next": "^12.0.0",
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.babelPluginStyledComponentsVersion = exports.emotionServerVersion = exports.stylusLoader = exports.lessLoader = exports.sassVersion = exports.eslintConfigNextVersion = exports.nextVersion = exports.nxVersion = void 0;
4
- exports.nxVersion = '13.5.0';
4
+ exports.nxVersion = '13.5.3';
5
5
  exports.nextVersion = '12.0.7';
6
6
  exports.eslintConfigNextVersion = '12.0.7';
7
7
  exports.sassVersion = '1.43.2';