Skip to content

Commit 97b6bd1

Browse files
authored
Restore defaults for all export settings (#801)
1 parent 09dd3f5 commit 97b6bd1

File tree

1 file changed

+16
-20
lines changed

1 file changed

+16
-20
lines changed

package.json

Lines changed: 16 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -835,26 +835,29 @@
835835
"folder": "src",
836836
"addCategory": false,
837837
"map": {},
838-
"atelier": true
838+
"atelier": true,
839+
"generated": false,
840+
"filter": "",
841+
"category": "*",
842+
"noStorage": false,
843+
"dontExportIfNoChanges": false,
844+
"maxConcurrentConnections": 0
839845
},
840846
"properties": {
841847
"folder": {
842848
"description": "Folder for exported source code within workspace.",
843-
"type": "string",
844-
"default": "src"
849+
"type": "string"
845850
},
846851
"addCategory": {
847852
"description": "Add a category folder to the beginning of the export path.",
848853
"type": [
849854
"boolean",
850855
"object"
851-
],
852-
"default": false
856+
]
853857
},
854858
"map": {
855859
"markdownDescription": "Map file names before export, with regexp pattern as a key and replacement as a value (e.g. `{ \"%(.*)\": \"_$1\" }` to make % classes or routines use underscore prefix instead).",
856860
"type": "object",
857-
"default": {},
858861
"examples": [
859862
{
860863
"%(.*)": "_$1"
@@ -884,41 +887,34 @@
884887
},
885888
"atelier": {
886889
"description": "Export source code as Atelier did it, with packages as subfolders.",
887-
"type": "boolean",
888-
"default": true
890+
"type": "boolean"
889891
},
890892
"generated": {
891893
"description": "Export generated source code files, such as INTs generated from classes.",
892-
"type": "boolean",
893-
"default": false
894+
"type": "boolean"
894895
},
895896
"filter": {
896897
"description": "SQL filter to limit what to export.",
897-
"type": "string",
898-
"default": ""
898+
"type": "string"
899899
},
900900
"category": {
901901
"markdownDescription": "Category of source code to export: `CLS` = classes; `RTN` = routines; `CSP` = csp files; `OTH` = other. Default is `*` = all.",
902902
"type": [
903903
"string",
904904
"object"
905-
],
906-
"default": "*"
905+
]
907906
},
908907
"noStorage": {
909908
"description": "Strip the storage definition on export. Can be useful when working across multiple systems.",
910-
"type": "boolean",
911-
"default": false
909+
"type": "boolean"
912910
},
913911
"dontExportIfNoChanges": {
914912
"description": "Do not rewrite the local file if the content is identical to what came from the server.",
915-
"type": "boolean",
916-
"default": false
913+
"type": "boolean"
917914
},
918915
"maxConcurrentConnections": {
919916
"description": "Maximum number of concurrent export connections. (0 = unlimited)",
920-
"type": "number",
921-
"default": 0
917+
"type": "number"
922918
}
923919
}
924920
},

0 commit comments

Comments
 (0)