forked from codebrewlab/nx-plugins
-
Notifications
You must be signed in to change notification settings - Fork 4
/
workspace.json
92 lines (92 loc) · 2.65 KB
/
workspace.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
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
{
"version": 2,
"projects": {
"nx-aws-cdk": {
"root": "packages/nx-aws-cdk",
"sourceRoot": "packages/nx-aws-cdk/src",
"projectType": "library",
"targets": {
"lint": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": ["packages/nx-aws-cdk/**/*.ts"]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/packages/nx-aws-cdk"],
"options": {
"jestConfig": "packages/nx-aws-cdk/jest.config.js",
"passWithNoTests": true
}
},
"build": {
"executor": "@nrwl/node:package",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/packages/nx-aws-cdk",
"tsConfig": "packages/nx-aws-cdk/tsconfig.lib.json",
"packageJson": "packages/nx-aws-cdk/package.json",
"main": "packages/nx-aws-cdk/src/index.ts",
"assets": [
"packages/nx-aws-cdk/*.md",
{
"input": "./packages/nx-aws-cdk/src",
"glob": "**/!(*.ts)",
"output": "./src"
},
{
"input": "./packages/nx-aws-cdk/src",
"glob": "**/*.d.ts",
"output": "./src"
},
{
"input": "./packages/nx-aws-cdk",
"glob": "generators.json",
"output": "."
},
{
"input": "./packages/nx-aws-cdk",
"glob": "executors.json",
"output": "."
}
]
}
},
"version": {
"executor": "@jscutlery/semver:version",
"options": {
"postTargets": ["nx-aws-cdk:github"],
"versionTagPrefix": "v"
}
},
"github": {
"executor": "@jscutlery/semver:github",
"options": {
"tag": "${tag}",
"notesFile": "packages/nx-aws-cdk/CHANGELOG.md"
}
}
}
},
"nx-aws-cdk-e2e": {
"root": "e2e/nx-aws-cdk-e2e",
"projectType": "application",
"sourceRoot": "e2e/nx-aws-cdk-e2e/src",
"targets": {
"e2e": {
"executor": "@nrwl/nx-plugin:e2e",
"options": {
"target": "nx-aws-cdk:build",
"npmPackageName": "@efacity/nx-aws-cdk",
"pluginOutputPath": "dist/packages/nx-aws-cdk",
"jestConfig": "e2e/nx-aws-cdk-e2e/jest.config.js"
}
}
}
}
},
"cli": {
"defaultCollection": "@nrwl/workspace"
}
}