-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathproject.json
36 lines (36 loc) · 1.08 KB
/
project.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "cypress-harness",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages/cypress-harness/src",
"projectType": "library",
"generators": {},
"tags": [],
"targets": {
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"]
},
"test": {
"executor": "@nx/jest:jest",
"options": {
"jestConfig": "packages/cypress-harness/jest.config.ts"
},
"outputs": ["{workspaceRoot}/coverage/packages/cypress-harness"]
},
"build": {
"executor": "@nx/js:tsc",
"options": {
"outputPath": "dist/packages/cypress-harness",
"tsConfig": "packages/cypress-harness/tsconfig.lib.json",
"packageJson": "packages/cypress-harness/package.json",
"main": "packages/cypress-harness/src/index.ts",
"assets": ["LICENSE", "packages/cypress-harness/*.md"]
},
"outputs": ["{options.outputPath}"]
},
"nx-release-publish": {
"executor": "@nx/js:release-publish",
"dependsOn": ["^nx-release-publish", "build"]
}
}
}