forked from TeselaGen/tg-oss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.json
44 lines (44 loc) · 1.16 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
{
"name": "sequence-utils",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages/sequence-utils/src",
"projectType": "library",
"targets": {
"version": {
"executor": "@jscutlery/semver:version",
"options": {
"preset": "conventional"
}
},
"build": {
"executor": "@nx/vite:build",
"outputs": ["{options.outputPath}"],
"options": {
"target": "es2015",
"outputPath": "dist/sequence-utils"
}
},
"publish": {
"command": "node tools/scripts/publish.mjs sequence-utils latest",
"dependsOn": ["test", "build"]
},
"publish-beta": {
"command": "node tools/scripts/publish.mjs sequence-utils beta",
"dependsOn": ["test", "build"]
},
"test": {
"command": "cd packages/sequence-utils && yarn vitest run --changed --config vite.config.ts"
},
"lint": {
"executor": "@nx/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": [
"packages/sequence-utils/**/*.js",
"packages/sequence-utils/package.json"
]
}
}
},
"tags": []
}