-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.json
41 lines (41 loc) · 1.02 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
{
"root": "packages/style",
"sourceRoot": "packages/style/src",
"projectType": "library",
"targets": {
"build": {
"executor": "@nrwl/workspace:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/packages/style",
"main": "packages/style/src/index.ts",
"tsConfig": "packages/style/tsconfig.lib.json",
"assets": ["packages/style/*.md", "packages/style/src/assets"]
}
},
"build-icons": {
"executor": "./tools/executors/icons:build",
"options": {
"pathToSvgs": "packages/style/src/assets/icons",
"outputPath": "packages/style/src/lib/icons",
"outFileName": "icon.definition.ts"
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["packages/style/**/*.ts"]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/packages/style"],
"options": {
"jestConfig": "packages/style/jest.config.js",
"passWithNoTests": true
}
}
},
"tags": []
}