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