-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.22 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.22 KB
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
{
"name": "dais",
"private": true,
"version": "0.4.5",
"type": "module",
"scripts": {
"postinstall": "nx run-many -t install",
"dev": "nx run-many -t dev",
"dev-api": "nx run frontend:watch-api",
"build": "nx run-many -t build",
"test": "nx run-many -t test"
},
"nx": {
"targets": {
"install": {
"executor": "nx:noop"
},
"dev": {
"executor": "nx:noop"
},
"build": {
"executor": "nx:noop"
},
"test": {
"executor": "nx:noop"
},
"pre-release": {
"executor": "nx:run-commands",
"options": {
"commands": [
"git diff --exit-code",
"git checkout main",
"git pull origin main"
],
"parallel": false
}
},
"release": {
"executor": "nx:run-commands",
"dependsOn": [
"pre-release"
],
"options": {
"commands": [
"pnpm version {args.type}",
"git push origin main --follow-tags"
],
"forwardAllArgs": false,
"parallel": false
}
}
}
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"nx": "22.5.4"
}
}