This repository has been archived by the owner on Feb 19, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.json
58 lines (58 loc) · 1.67 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "automation-logic",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/automation-logic/src",
"projectType": "library",
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"buildableProjectDepsInPackageJsonType": "peerDependencies",
"main": "libs/automation-logic/src/index.ts",
"outputPath": "dist/libs/automation-logic",
"packageJson": "libs/automation-logic/package.json",
"tsConfig": "libs/automation-logic/tsconfig.lib.json",
"updateBuildableProjectDepsInPackageJson": true
},
"configurations": {
"production": {
"optimization": true,
"assets": [
"libs/automation-logic/*.md",
"libs/automation-logic/package.json"
]
}
}
},
"lint": {
"executor": "@nx/linter:eslint",
"options": {
"lintFilePatterns": ["libs/automation-logic/**/*.ts"]
},
"outputs": ["{options.outputFile}"]
},
"publish": {
"executor": "nx:run-commands",
"options": {
"parallel": false,
"commands": [
{
"command": "scripts/publish-lib.sh automation-logic",
"description": "Canned script"
}
]
}
},
"test": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/libs/automation-logic"],
"options": {
"jestConfig": "libs/automation-logic/jest.config.ts",
"passWithNoTests": true
}
}
},
"implicitDependencies": ["!testing"],
"tags": ["nestjs", "home-assistant", "generated-types"]
}