@nrwl/nx-plugin 13.2.0-beta.1 → 13.2.0-beta.2
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 +1 -1
- package/package.json +5 -5
- package/src/utils/versions.js +1 -1
package/README.md
CHANGED
|
@@ -114,6 +114,6 @@ Even though Nx isn't technology specific, we provide 3 separate flavours of the
|
|
|
114
114
|
|
|
115
115
|
# Engage with the Core Team and the Community
|
|
116
116
|
|
|
117
|
-
- [Nx
|
|
117
|
+
- [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.
|
|
118
118
|
- [Follow Nx on Twitter](https://twitter.com/NxDevTools)
|
|
119
119
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nrwl/nx-plugin",
|
|
3
|
-
"version": "13.2.0-beta.
|
|
3
|
+
"version": "13.2.0-beta.2",
|
|
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.2.0-beta.
|
|
31
|
-
"@nrwl/jest": "13.2.0-beta.
|
|
32
|
-
"@nrwl/linter": "13.2.0-beta.
|
|
33
|
-
"@nrwl/node": "13.2.0-beta.
|
|
30
|
+
"@nrwl/devkit": "13.2.0-beta.2",
|
|
31
|
+
"@nrwl/jest": "13.2.0-beta.2",
|
|
32
|
+
"@nrwl/linter": "13.2.0-beta.2",
|
|
33
|
+
"@nrwl/node": "13.2.0-beta.2",
|
|
34
34
|
"fs-extra": "^9.1.0",
|
|
35
35
|
"rxjs": "^6.5.4",
|
|
36
36
|
"tslib": "^2.3.0",
|
package/src/utils/versions.js
CHANGED