forked from bennymeg/nx-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuilders.json
More file actions
25 lines (25 loc) · 873 Bytes
/
builders.json
File metadata and controls
25 lines (25 loc) · 873 Bytes
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
{
"$schema": "./node_modules/@angular-devkit/architect/src/builders-schema.json",
"builders": {
"build": {
"implementation": "./src/builders/build/build.impl",
"schema": "./src/builders/build/schema.json",
"description": "Build an Electron application"
},
"execute": {
"implementation": "./src/builders/execute/execute.impl",
"schema": "./src/builders/execute/schema.json",
"description": "Execute an Electron application"
},
"package": {
"implementation": "./src/builders/package/package.impl",
"schema": "./src/builders/package/schema.json",
"description": "Package an Electron application"
},
"make": {
"implementation": "./src/builders/package/package.impl",
"schema": "./src/builders/package/schema.json",
"description": "Make an Electron application"
}
}
}