We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54ad7d8 commit ce8cd23Copy full SHA for ce8cd23
pymakr.schema.json
@@ -71,6 +71,25 @@
71
"type": "boolean",
72
"default": false
73
},
74
+ "uploadOnDevStart": {
75
+ "description": "Uploads project to device when dev mode is started.",
76
+ "type": "string",
77
+ "default": "outOfSync",
78
+ "anyOf": [
79
+ {
80
+ "const": "always",
81
+ "description": "Will upload the project to all connected devices."
82
+ },
83
84
+ "const": "never",
85
+ "description": "Will not upload project to any devices."
86
87
88
+ "const": "outOfSync",
89
+ "description": "Will upload the project to any connected device that is detected to be out of sync."
90
+ }
91
+ ]
92
93
"onUpdate": {
94
"description": "Action to run after file changes have been propagates",
95
"type": "string",
0 commit comments