@code-pushup/nx-plugin 0.53.0 → 0.54.0

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
@@ -10,7 +10,7 @@ Register this plugin in your `nx.json` to leverage a set of generators and execu
10
10
  // nx.json
11
11
  {
12
12
  //...
13
- "plugins": ["@code-pushup/nx-plugin"]
13
+ "plugins": ["@code-pushup/nx-plugin"],
14
14
  }
15
15
  ```
16
16
 
package/package.json CHANGED
@@ -1,31 +1,42 @@
1
1
  {
2
2
  "name": "@code-pushup/nx-plugin",
3
- "version": "0.53.0",
3
+ "version": "0.54.0",
4
4
  "license": "MIT",
5
5
  "description": "Nx plugin to integrate the Code PushUp CLI into your workspace 🛠️",
6
6
  "publishConfig": {
7
7
  "access": "public"
8
8
  },
9
- "homepage": "code-pushup.dev",
9
+ "homepage": "https://code-pushup.dev",
10
10
  "bugs": {
11
- "url": "https://github.com/code-pushup/cli/issues"
11
+ "url": "https://github.com/code-pushup/cli/issues?q=is%3Aissue%20state%3Aopen%20type%3ABug%20label%3A\"🧩%20nx-plugin\""
12
12
  },
13
13
  "repository": {
14
14
  "type": "git",
15
15
  "url": "git+https://github.com/code-pushup/cli.git",
16
16
  "directory": "packages/nx-plugin"
17
17
  },
18
- "dependencies": {
19
- "@nx/devkit": "^17.1.3",
20
- "tslib": "2.6.3",
21
- "nx": "^17.1.3",
22
- "@code-pushup/models": "0.53.0",
23
- "zod": "^3.22.4",
24
- "@code-pushup/utils": "0.53.0"
25
- },
18
+ "keywords": [
19
+ "CLI",
20
+ "Code PushUp",
21
+ "Nx",
22
+ "plugin",
23
+ "automation",
24
+ "developer tools",
25
+ "code quality",
26
+ "conformance",
27
+ "build tools"
28
+ ],
26
29
  "type": "commonjs",
27
30
  "main": "./src/index.js",
28
31
  "typings": "./src/index.d.ts",
29
32
  "generators": "./generators.json",
30
- "executors": "./executors.json"
33
+ "executors": "./executors.json",
34
+ "dependencies": {
35
+ "@nx/devkit": "^17.1.3",
36
+ "tslib": "^2.6.2",
37
+ "nx": "^17.1.3",
38
+ "@code-pushup/models": "0.54.0",
39
+ "zod": "^3.22.4",
40
+ "@code-pushup/utils": "0.54.0"
41
+ }
31
42
  }
@@ -15,9 +15,9 @@ Configure a target in your project json.
15
15
  "name": "my-project",
16
16
  "targets": {
17
17
  "code-pushup": {
18
- "executor": "@code-pushup/nx-plugin:cli"
19
- }
20
- }
18
+ "executor": "@code-pushup/nx-plugin:cli",
19
+ },
20
+ },
21
21
  }
22
22
  ```
23
23
 
@@ -54,11 +54,11 @@ The following things happen:
54
54
  "options": {
55
55
  "projectPrefix": "cli", // upload.project = cli-my-project
56
56
  "verbose": true,
57
- "progress": false
57
+ "progress": false,
58
58
  // persist and upload options as defined in CoreConfig
59
- }
60
- }
61
- }
59
+ },
60
+ },
61
+ },
62
62
  }
63
63
  ```
64
64
 
@@ -15,7 +15,7 @@ Why should you use this plugin?
15
15
  // nx.json
16
16
  {
17
17
  //...
18
- "plugins": ["@code-pushup/nx-plugin"]
18
+ "plugins": ["@code-pushup/nx-plugin"],
19
19
  }
20
20
  ```
21
21
 
@@ -29,10 +29,10 @@ or with options:
29
29
  {
30
30
  "plugin": "@code-pushup/nx-plugin",
31
31
  "options": {
32
- "projectPrefix": "cli"
33
- }
34
- }
35
- ]
32
+ "projectPrefix": "cli",
33
+ },
34
+ },
35
+ ],
36
36
  }
37
37
  ```
38
38