forked from JMBeresford/retrom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnx.json
More file actions
111 lines (111 loc) · 2.32 KB
/
nx.json
File metadata and controls
111 lines (111 loc) · 2.32 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"parallel": 5,
"targetDefaults": {
"dev": {
"syncGenerators": ["@nx/js:typescript-sync"]
},
"build": {
"syncGenerators": ["@nx/js:typescript-sync"]
},
"prettier:format": {
"executor": "nx:run-commands",
"options": {
"command": "pnpm prettier --write .",
"cwd": "{projectRoot}"
},
"configurations": {
"check": {
"command": "pnpm prettier --check ."
}
}
},
"buf:format": {
"executor": "nx:run-commands",
"options": {
"command": "pnpm buf format --write",
"cwd": "{projectRoot}"
},
"configurations": {
"check": {
"command": "pnpm buf format --diff --exit-code"
}
}
},
"cargo:format": {
"executor": "nx:run-commands",
"options": {
"cwd": "{projectRoot}",
"command": "cargo fmt"
},
"configurations": {
"check": {
"command": "cargo fmt -- --check"
}
}
},
"cargo:run": {
"executor": "@monodon/rust:run",
"dependsOn": ["^cargo:build"],
"continuous": true
},
"cargo:test": {
"executor": "@monodon/rust:test",
"dependsOn": ["^cargo:build"]
},
"cargo:lint": {
"dependsOn": ["^cargo:lint"],
"executor": "@monodon/rust:lint",
"configurations": {
"fix": {
"args": ["--fix"]
}
}
},
"eslint:lint": {
"dependsOn": ["^build"],
"configurations": {
"fix": {
"args": ["--fix"]
}
}
},
"cargo:build": {
"dependsOn": ["^cargo:build"],
"executor": "@monodon/rust:build",
"defaultConfiguration": "release",
"configurations": {
"release": {
"release": true
},
"debug": {
"release": false
}
}
}
},
"plugins": [
{
"plugin": "@nx/eslint/plugin",
"options": {
"targetName": "eslint:lint"
}
},
{
"plugin": "@nx/vite/plugin",
"options": {}
},
{
"plugin": "@nx/js/typescript",
"options": {
"build": false,
"typecheck": false
}
},
"@monodon/rust"
],
"tui": {
"enabled": false
},
"nxCloudId": "68671fe5462f6a349cd487bd"
}