@nx/plugin 16.8.0-beta.2 → 16.8.0-beta.4
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/plugin",
|
|
3
|
-
"version": "16.8.0-beta.
|
|
3
|
+
"version": "16.8.0-beta.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "This plugin is used to create Nx plugins! It contains generators for generating common plugin features like generators, executors, migrations and more.",
|
|
6
6
|
"repository": {
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
"migrations": "./migrations.json"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@nrwl/nx-plugin": "16.8.0-beta.
|
|
32
|
-
"@nx/devkit": "16.8.0-beta.
|
|
33
|
-
"@nx/jest": "16.8.0-beta.
|
|
34
|
-
"@nx/js": "16.8.0-beta.
|
|
35
|
-
"@nx/linter": "16.8.0-beta.
|
|
31
|
+
"@nrwl/nx-plugin": "16.8.0-beta.4",
|
|
32
|
+
"@nx/devkit": "16.8.0-beta.4",
|
|
33
|
+
"@nx/jest": "16.8.0-beta.4",
|
|
34
|
+
"@nx/js": "16.8.0-beta.4",
|
|
35
|
+
"@nx/linter": "16.8.0-beta.4",
|
|
36
36
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
37
37
|
"fs-extra": "^11.1.0",
|
|
38
38
|
"tslib": "^2.3.0"
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
43
|
"type": "commonjs",
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "c9aad2dc8c2b34531cf61549bff872e68c481e4e"
|
|
45
45
|
}
|
|
@@ -29,7 +29,7 @@ describe('<%= cliName %>', () => {
|
|
|
29
29
|
* Creates a test project with create-nx-workspace and installs the plugin
|
|
30
30
|
* @returns The directory where the test project was created
|
|
31
31
|
*/
|
|
32
|
-
function createTestProject(extraArgs
|
|
32
|
+
function createTestProject(extraArgs = '') {
|
|
33
33
|
const projectName = 'test-project';
|
|
34
34
|
const projectDirectory = join(process.cwd(), 'tmp', projectName);
|
|
35
35
|
|