@nrwl/linter 13.5.0-beta.1 → 13.5.0-beta.5
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 +2 -24
- package/package.json +8 -3
- package/src/utils/versions.js +1 -1
package/README.md
CHANGED
|
@@ -15,30 +15,8 @@
|
|
|
15
15
|
|
|
16
16
|
<hr>
|
|
17
17
|
|
|
18
|
-
#
|
|
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
|
-
## What is It?
|
|
26
|
-
|
|
27
|
-
Executors and generators adding TS and JS lint checks to applications and libraries.
|
|
28
|
-
|
|
29
|
-
## How to Use
|
|
30
|
-
|
|
31
|
-
This package is used by the `@nrwl/web`, `@nrwl/react`, `@nrwl/angular`, `@nrwl/node`. See [https://github.com/nrwl/nx](https://github.com/nrwl/nx) for more information.
|
|
32
|
-
|
|
33
|
-
## Documentation & Resources
|
|
34
|
-
|
|
35
|
-
A few links to help you get started:
|
|
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)
|
|
40
|
-
- [Blog Posts About Nx](https://blog.nrwl.io/nx/home)
|
|
41
|
-
|
|
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>
|
|
44
|
-
|
|
22
|
+
{{content}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nrwl/linter",
|
|
3
|
-
"version": "13.5.0-beta.
|
|
3
|
+
"version": "13.5.0-beta.5",
|
|
4
4
|
"description": "Lint Plugin for Nx",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -34,9 +34,14 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@phenomnomnominal/tsquery": "4.1.1",
|
|
37
|
-
"@nrwl/devkit": "13.5.0-beta.
|
|
38
|
-
"@nrwl/jest": "13.5.0-beta.
|
|
37
|
+
"@nrwl/devkit": "13.5.0-beta.5",
|
|
38
|
+
"@nrwl/jest": "13.5.0-beta.5",
|
|
39
39
|
"tmp": "~0.2.1",
|
|
40
40
|
"tslib": "^2.3.0"
|
|
41
|
+
},
|
|
42
|
+
"peerDependenciesMeta": {
|
|
43
|
+
"eslint": {
|
|
44
|
+
"optional": true
|
|
45
|
+
}
|
|
41
46
|
}
|
|
42
47
|
}
|
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.5.0-beta.
|
|
4
|
+
exports.nxVersion = '13.5.0-beta.5';
|
|
5
5
|
exports.tslintVersion = '~6.1.0';
|
|
6
6
|
exports.tslintToEslintConfigVersion = '^2.4.0';
|
|
7
7
|
exports.buildAngularVersion = '~13.1.0';
|