-
-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathproject.json
More file actions
65 lines (65 loc) · 1.52 KB
/
project.json
File metadata and controls
65 lines (65 loc) · 1.52 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
{
"name": "google-mobile-ads",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "library",
"sourceRoot": "packages/google-mobile-ads",
"targets": {
"build": {
"executor": "@nx/js:tsc",
"options": {
"outputPath": "dist/packages/google-mobile-ads",
"tsConfig": "packages/google-mobile-ads/tsconfig.json",
"packageJson": "packages/google-mobile-ads/package.json",
"main": "packages/google-mobile-ads/index.d.ts",
"assets": [
"packages/google-mobile-ads/*.md",
"packages/google-mobile-ads/index.d.ts",
"LICENSE",
{
"glob": "**/*",
"input": "packages/google-mobile-ads/platforms/",
"output": "./platforms/"
}
],
"dependsOn": [
{
"target": "build.all",
"projects": "dependencies"
}
]
}
},
"build.all": {
"executor": "nx:run-commands",
"options": {
"commands": ["node tools/scripts/build-finish.ts google-mobile-ads"],
"parallel": false
},
"outputs": ["{workspaceRoot}/dist/packages/google-mobile-ads"],
"dependsOn": [
{
"target": "build.all",
"projects": "dependencies"
},
{
"target": "build",
"projects": "self"
}
]
},
"focus": {
"executor": "nx:run-commands",
"options": {
"commands": ["nx g @nativescript/plugin-tools:focus-packages google-mobile-ads"],
"parallel": false
}
},
"lint": {
"executor": "@nx/eslint:eslint",
"options": {
"lintFilePatterns": ["packages/google-mobile-ads/**/*.ts"]
}
}
},
"tags": []
}