|
1 | 1 | { |
2 | 2 | "name": "examples-plugins", |
3 | | - "$schema": "../../node_modules/nx/schemas/project-schema.json", |
| 3 | + "$schema": "../node_modules/nx/schemas/project-schema.json", |
4 | 4 | "sourceRoot": "examples/plugins/src", |
5 | 5 | "projectType": "library", |
6 | 6 | "targets": { |
7 | | - "code-pushup": { |
8 | | - "dependsOn": [ |
9 | | - "code-pushup-coverage", |
10 | | - "code-pushup-eslint", |
11 | | - "code-pushup-typescript" |
12 | | - ] |
13 | | - }, |
14 | | - "code-pushup-coverage": { |
15 | | - "dependsOn": ["unit-test", "int-test"] |
16 | | - }, |
17 | | - "code-pushup-eslint": {}, |
18 | | - "code-pushup-typescript": {}, |
19 | | - "build": { |
20 | | - "executor": "@nx/js:tsc", |
21 | | - "outputs": ["{options.outputPath}"], |
22 | | - "options": { |
23 | | - "outputPath": "dist/examples/plugins", |
24 | | - "main": "examples/plugins/src/index.ts", |
25 | | - "tsConfig": "examples/plugins/tsconfig.lib.json", |
26 | | - "assets": ["examples/plugins/*.md"] |
27 | | - } |
28 | | - }, |
29 | | - "lint": { |
30 | | - "executor": "@nx/linter:eslint", |
31 | | - "outputs": ["{options.outputFile}"], |
32 | | - "options": { |
33 | | - "lintFilePatterns": ["examples/plugins/**/*.ts"] |
34 | | - } |
35 | | - }, |
36 | | - "unit-test": { |
37 | | - "executor": "@nx/vite:test", |
38 | | - "outputs": ["{options.reportsDirectory}"], |
39 | | - "options": { |
40 | | - "configFile": "examples/plugins/vitest.unit.config.ts", |
41 | | - "reportsDirectory": "../../coverage/examples-plugins/unit-tests" |
42 | | - } |
43 | | - }, |
| 7 | + "build": {}, |
| 8 | + "lint": {}, |
| 9 | + "unit-test": {}, |
44 | 10 | "int-test": { |
45 | 11 | "executor": "@nx/vite:test", |
46 | | - "outputs": ["{options.reportsDirectory}"], |
47 | 12 | "options": { |
48 | | - "configFile": "examples/plugins/vitest.int.config.ts", |
49 | | - "reportsDirectory": "../../coverage/examples-plugins/int-tests" |
| 13 | + "configFile": "examples/plugins/vitest.int.config.ts" |
50 | 14 | } |
51 | 15 | }, |
52 | 16 | "run-collect": { |
|
0 commit comments