-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.json
57 lines (57 loc) · 1.28 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
{
"name": "letify",
"$schema": "node_modules/nx/schemas/project-schema.json",
"includedScripts": [],
"sourceRoot": "src",
"projectType": "library",
"tags": [],
"targets": {
"build": {
"executor": "@nx/rollup:rollup",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/letify",
"main": "./src/index.ts",
"tsConfig": "./tsconfig.lib.json",
"external": [
"@angular/compiler",
"@jsverse/utils",
"cheerio",
"commander",
"glob",
"open"
],
"assets": [
{
"input": ".",
"output": ".",
"glob": "*.md"
},
{
"input": ".",
"output": ".",
"glob": "logo-gradient.svg"
}
]
}
},
"lint": {
"command": "eslint ./src ./package.json"
},
"test": {
"executor": "@nx/vite:test",
"outputs": ["{options.reportsDirectory}"],
"options": {
"reportsDirectory": "coverage/letify"
}
},
"local-registry": {
"executor": "@nx/js:verdaccio",
"options": {
"port": 4873,
"config": ".verdaccio/config.yml",
"storage": "tmp/local-registry/storage"
}
}
}
}