-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.json
More file actions
100 lines (100 loc) · 2.82 KB
/
project.json
File metadata and controls
100 lines (100 loc) · 2.82 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "nativescript-appdynamics",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "library",
"sourceRoot": "packages/nativescript-appdynamics",
"targets": {
"build": {
"executor": "@nx/js:tsc",
"options": {
"outputPath": "dist/packages/nativescript-appdynamics",
"tsConfig": "packages/nativescript-appdynamics/tsconfig.json",
"packageJson": "packages/nativescript-appdynamics/package.json",
"main": "packages/nativescript-appdynamics/index.d.ts",
"assets": [
"packages/nativescript-appdynamics/*.md",
"packages/nativescript-appdynamics/index.d.ts",
"packages/nativescript-appdynamics/postinstall.js",
"packages/nativescript-appdynamics/preuninstall.js",
"LICENSE",
{
"glob": "**/*",
"input": "packages/nativescript-appdynamics/platforms/",
"output": "./platforms/"
}
],
"dependsOn": [
{
"target": "build.all",
"projects": "dependencies"
}
]
}
},
"build.hooks": {
"executor": "nx:run-commands",
"options": {
"commands": ["./node_modules/.bin/tsc -p packages/nativescript-appdynamics/hooks/tsconfig.json"],
"parallel": false
},
"outputs": ["{workspaceRoot}/dist/packages/nativescript-appdynamics/hooks"],
"dependsOn": [
{
"target": "build.hooks",
"dependencies": true
},
{
"target": "build"
}
]
},
"build.all": {
"executor": "nx:run-commands",
"options": {
"commands": ["node tools/scripts/build-finish.ts nativescript-appdynamics"],
"parallel": false
},
"outputs": ["{workspaceRoot}/dist/packages/nativescript-appdynamics"],
"dependsOn": [
{
"target": "build.all",
"dependencies": true
},
{
"target": "build.hooks"
},
{
"target": "build"
}
]
},
"build.demo": {
"executor": "nx:run-commands",
"options": {
"commands": ["node tools/scripts/build-finish.ts nativescript-appdynamics demo"],
"parallel": false
},
"outputs": ["{workspaceRoot}/dist/packages/nativescript-appdynamics"],
"dependsOn": [
{
"target": "build.all",
"dependencies": true
}
]
},
"focus": {
"executor": "nx:run-commands",
"options": {
"commands": ["nx g @nativescript/plugin-tools:focus-packages nativescript-appdynamics"],
"parallel": false
}
},
"lint": {
"executor": "@nx/linter:eslint",
"options": {
"lintFilePatterns": ["packages/nativescript-appdynamics/**/*.ts"]
}
}
},
"tags": []
}