You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+16-20Lines changed: 16 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -835,26 +835,29 @@
835
835
"folder": "src",
836
836
"addCategory": false,
837
837
"map": {},
838
-
"atelier": true
838
+
"atelier": true,
839
+
"generated": false,
840
+
"filter": "",
841
+
"category": "*",
842
+
"noStorage": false,
843
+
"dontExportIfNoChanges": false,
844
+
"maxConcurrentConnections": 0
839
845
},
840
846
"properties": {
841
847
"folder": {
842
848
"description": "Folder for exported source code within workspace.",
843
-
"type": "string",
844
-
"default": "src"
849
+
"type": "string"
845
850
},
846
851
"addCategory": {
847
852
"description": "Add a category folder to the beginning of the export path.",
848
853
"type": [
849
854
"boolean",
850
855
"object"
851
-
],
852
-
"default": false
856
+
]
853
857
},
854
858
"map": {
855
859
"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).",
856
860
"type": "object",
857
-
"default": {},
858
861
"examples": [
859
862
{
860
863
"%(.*)": "_$1"
@@ -884,41 +887,34 @@
884
887
},
885
888
"atelier": {
886
889
"description": "Export source code as Atelier did it, with packages as subfolders.",
887
-
"type": "boolean",
888
-
"default": true
890
+
"type": "boolean"
889
891
},
890
892
"generated": {
891
893
"description": "Export generated source code files, such as INTs generated from classes.",
892
-
"type": "boolean",
893
-
"default": false
894
+
"type": "boolean"
894
895
},
895
896
"filter": {
896
897
"description": "SQL filter to limit what to export.",
897
-
"type": "string",
898
-
"default": ""
898
+
"type": "string"
899
899
},
900
900
"category": {
901
901
"markdownDescription": "Category of source code to export: `CLS` = classes; `RTN` = routines; `CSP` = csp files; `OTH` = other. Default is `*` = all.",
902
902
"type": [
903
903
"string",
904
904
"object"
905
-
],
906
-
"default": "*"
905
+
]
907
906
},
908
907
"noStorage": {
909
908
"description": "Strip the storage definition on export. Can be useful when working across multiple systems.",
910
-
"type": "boolean",
911
-
"default": false
909
+
"type": "boolean"
912
910
},
913
911
"dontExportIfNoChanges": {
914
912
"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"
917
914
},
918
915
"maxConcurrentConnections": {
919
916
"description": "Maximum number of concurrent export connections. (0 = unlimited)",
0 commit comments