@nrwl/linter 13.4.5-beta.6 → 13.4.7-beta.1
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 +8 -85
- package/package.json +6 -6
- package/src/utils/versions.js +1 -1
package/README.md
CHANGED
|
@@ -17,38 +17,9 @@
|
|
|
17
17
|
|
|
18
18
|
# Linter Plugin for Nx
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
# Smart, Fast and Extensible Build System
|
|
21
21
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
Nx is a smart, fast and extensible build system. It comes with first class monorepo support and powerful integrations.
|
|
25
|
-
|
|
26
|
-
### Best-in-Class Support for Monorepos
|
|
27
|
-
|
|
28
|
-
<strong>Nx</strong> provides distributed graph-based task execution and computation caching.
|
|
29
|
-
|
|
30
|
-
<strong>Nx</strong> is smart. It analyzes your workspace and figures out what can be affected by every code change.
|
|
31
|
-
That's why Nx doesn't rebuild and retest everything on every commit--<strong>it only rebuilds what is necessary</strong>
|
|
32
|
-
.
|
|
33
|
-
|
|
34
|
-
<strong>Nx</strong> partitions commands into a graph of smaller tasks. Nx then runs those tasks in parallel,
|
|
35
|
-
and <strong>it can even distribute them across multiple machines without any configuration</strong>.
|
|
36
|
-
|
|
37
|
-
<strong>Nx also uses a distributed computation cache.</strong> If someone has already built or tested similar code, Nx
|
|
38
|
-
will use their results to speed up the command for everyone else.
|
|
39
|
-
|
|
40
|
-
### Holistic Dev Experience Powered by an Advanced CLI and Editor Plugins
|
|
41
|
-
|
|
42
|
-
<strong>Nx</strong> helps scale your development from one team building one application to many teams building multiple
|
|
43
|
-
frontend and backend applications all in the same workspace. <strong >When using Nx, developers have a holistic dev
|
|
44
|
-
experience powered by an advanced CLI</strong > (with editor plugins), capabilities for controlled code sharing and
|
|
45
|
-
consistent code generation.
|
|
46
|
-
|
|
47
|
-
### Rich Plugin Ecosystem
|
|
48
|
-
|
|
49
|
-
<strong>Nx</strong> is an open platform with plugins for many modern tools and frameworks. It has support for
|
|
50
|
-
TypeScript, React, Angular, Cypress, Jest, Prettier, Nest.js, Next.js, Storybook, Ionic among others. With Nx, you get a
|
|
51
|
-
consistent dev experience regardless of the tools used.
|
|
22
|
+
Nx is a next generation build system with first class monorepo support and powerful integrations.
|
|
52
23
|
|
|
53
24
|
|
|
54
25
|
## What is It?
|
|
@@ -61,61 +32,13 @@ This package is used by the `@nrwl/web`, `@nrwl/react`, `@nrwl/angular`, `@nrwl/
|
|
|
61
32
|
|
|
62
33
|
## Documentation & Resources
|
|
63
34
|
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
- [Nx Documentation and Guides](https://nx.dev)
|
|
67
|
-
- [Intro into Nx](https://nx.dev/getting-started/intro)
|
|
68
|
-
- [Interactive Tutorial with Videos](https://nx.dev/tutorial/01-create-application)
|
|
69
|
-
|
|
70
|
-
### Quick Start Videos
|
|
71
|
-
|
|
72
|
-
- [Scale Your React Development with Nx](https://www.youtube.com/watch?v=sNz-4PUM0k8)
|
|
73
|
-
- [Scale your Node Development with Nx](https://www.youtube.com/watch?v=iIh5h_G52kI)
|
|
74
|
-
- [Modern Angular with Nx Dev Tools](https://www.youtube.com/watch?v=cXOkmOy-8dk)
|
|
75
|
-
|
|
76
|
-
### Courses
|
|
77
|
-
|
|
78
|
-
<table>
|
|
79
|
-
<tr>
|
|
80
|
-
<td><strong>Scale React Development with Nx</strong></td>
|
|
81
|
-
<td><strong>Nx Workspaces</strong></td>
|
|
82
|
-
<td><strong>Advanced Nx Workspaces</strong></td>
|
|
83
|
-
</tr>
|
|
84
|
-
<tr>
|
|
85
|
-
<td>
|
|
86
|
-
<a href="https://egghead.io/playlists/scale-react-development-with-nx-4038" target="_blank">
|
|
87
|
-
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/EGH_ScalingReactNx.png" height="150px" alt="Nx - Scale React Development with Nx video course"></p>
|
|
88
|
-
</a>
|
|
89
|
-
</td>
|
|
90
|
-
<td>
|
|
91
|
-
<a href="https://www.youtube.com/watch?v=2mYLe9Kp9VM&list=PLakNactNC1dH38AfqmwabvOszDmKriGco" target="_blank">
|
|
92
|
-
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-workspace-course.png" width="350" alt="Nx Workspaces video course"></p>
|
|
93
|
-
</a>
|
|
94
|
-
</td>
|
|
95
|
-
<td>
|
|
96
|
-
<a href="https://nxplaybook.com/p/advanced-nx-workspaces" target="_blank">
|
|
97
|
-
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/advanced-nx-workspace-course.png" width="350" alt="Nx Advanced Workspaces video course"></p>
|
|
98
|
-
</a>
|
|
99
|
-
</td>
|
|
100
|
-
</tr>
|
|
101
|
-
</table>
|
|
102
|
-
|
|
103
|
-
### Videos, Blogs, Books, Examples
|
|
104
|
-
|
|
105
|
-
- [Nx Dev Tools for Monorepos, In-Depth Explainer (React)](https://www.youtube.com/watch?v=jCf92IyR-GE)
|
|
106
|
-
|
|
107
|
-
- [Nx Dev Tools for Monorepos, In-Depth Explainer (Angular)](https://youtu.be/h5FIGDn5YM0)
|
|
108
|
-
|
|
109
|
-
- [Youtube Channel with Nx-Related Videos](https://www.youtube.com/playlist?list=PLakNactNC1dHHWx4JIORwfnEajRv6FG5m)
|
|
35
|
+
A few links to help you get started:
|
|
110
36
|
|
|
37
|
+
- [Nx.Dev: Documentation, Guides, Interactive Tutorials](https://nx.dev)
|
|
38
|
+
- [Tutorial: Adding Nx to an Existing Monorepo](https://nx.dev/migration/adding-to-monorepo)
|
|
39
|
+
- [Official Nx YouTube Channel](https://www.youtube.com/c/Nrwl_io)
|
|
111
40
|
- [Blog Posts About Nx](https://blog.nrwl.io/nx/home)
|
|
112
41
|
|
|
113
|
-
-
|
|
114
|
-
|
|
115
|
-
- [Nx Examples Repo](https://github.com/nrwl/nx-examples)
|
|
116
|
-
|
|
117
|
-
# Engage with the Core Team and the Community
|
|
118
|
-
|
|
119
|
-
- [The Nx Show Playlist on YouTube](https://www.youtube.com/playlist?list=PLakNactNC1dE8KLQ5zd3fQwu_yQHjTmR5). It's a regular YouTube stream where we talk all things Nx. Join the stream, ask questions, etc.
|
|
120
|
-
- [Follow Nx on Twitter](https://twitter.com/NxDevTools)
|
|
42
|
+
<p style="text-align: center;"><a href="https://nx.dev/#learning-materials" target="_blank"><img src="./images/nx-courses-and-videos.svg"
|
|
43
|
+
width="100%" alt="Nx - Smart, Fast and Extensible Build System"></a></p>
|
|
121
44
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nrwl/linter",
|
|
3
|
-
"version": "13.4.
|
|
3
|
+
"version": "13.4.7-beta.1",
|
|
4
4
|
"description": "Lint Plugin for Nx",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -29,13 +29,13 @@
|
|
|
29
29
|
},
|
|
30
30
|
"builders": "./executors.json",
|
|
31
31
|
"schematics": "./generators.json",
|
|
32
|
+
"peerDependencies": {
|
|
33
|
+
"eslint": "^8.0.0"
|
|
34
|
+
},
|
|
32
35
|
"dependencies": {
|
|
33
36
|
"@phenomnomnominal/tsquery": "4.1.1",
|
|
34
|
-
"@nrwl/devkit": "13.4.
|
|
35
|
-
"@nrwl/jest": "13.4.
|
|
36
|
-
"eslint": "8.2.0",
|
|
37
|
-
"glob": "7.1.4",
|
|
38
|
-
"minimatch": "3.0.4",
|
|
37
|
+
"@nrwl/devkit": "13.4.7-beta.1",
|
|
38
|
+
"@nrwl/jest": "13.4.7-beta.1",
|
|
39
39
|
"tmp": "~0.2.1",
|
|
40
40
|
"tslib": "^2.3.0"
|
|
41
41
|
}
|
package/src/utils/versions.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.eslintConfigPrettierVersion = exports.eslintVersion = exports.typescriptESLintVersion = exports.buildAngularVersion = exports.tslintToEslintConfigVersion = exports.tslintVersion = exports.nxVersion = void 0;
|
|
4
|
-
exports.nxVersion = '13.4.
|
|
4
|
+
exports.nxVersion = '13.4.7-beta.1';
|
|
5
5
|
exports.tslintVersion = '~6.1.0';
|
|
6
6
|
exports.tslintToEslintConfigVersion = '^2.4.0';
|
|
7
7
|
exports.buildAngularVersion = '~13.1.0';
|