Skip to content

Commit

Permalink
Merge pull request #233 from sasjs/update-sasconfig-schema
Browse files Browse the repository at this point in the history
fix: update sasjsconfig-schema.json
  • Loading branch information
allanbowe authored Feb 27, 2023
2 parents cd41851 + 6e85a6e commit 749fa65
Showing 1 changed file with 19 additions and 21 deletions.
40 changes: 19 additions & 21 deletions src/types/sasjsconfig-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,14 +109,22 @@
"description": "These local folders are searched for Binary Files when running sasjs compile. Folders are relative to the sasjs/sasjsconfig.json file.",
"examples": [["binaries", "../../more_binaries"]]
},
"buildOutputFolder": {
"$id": "#/properties/buildOutputFolder",
"sasjsBuildFolder": {
"$id": "#/properties/sasjsBuildFolder",
"type": "string",
"title": "buildOutputFolder",
"description": "In a local config, outputs go to the `sasjsbuild` folder by default. In global, the default is `~/.sasjsbuild`.",
"title": "sasjsBuildFolder",
"description": "The name of the folder containing the compiled output. The `sasjs build` command will take all of the subfolders here as inputs to create the build pack. By default this will be named `sasjsbuild`. In global, the default is `~/.sasjsbuild`.",
"default": "sasjsbuild",
"examples": ["sasjsbuild", ".sasjsbuild"]
},
"sasjsResultsFolder": {
"$id": "#/properties/sasjsResultsFolder",
"type": "string",
"title": "sasjsResultsFolder",
"description": "The name of the folder containing the output (eg logs, ODS output) from `sasjs run`. By default this will be named `sasjsresults`. In global, the default is `~/.sasjsresults`.",
"default": "sasjsbuild",
"examples": ["sasjsresults", ".sasjsresults"]
},
"defaultTarget": {
"$id": "#/properties/defaultTarget",
"type": "string",
Expand Down Expand Up @@ -336,9 +344,7 @@
"name": "value",
"numvar": "42"
},
"buildOutputFileName": "buildpack.sas",
"buildOutputFolder": "sasjsbuild",
"buildResultsFolder": "sasjsresults"
"buildOutputFileName": "buildpack.sas"
}
],
"properties": {
Expand All @@ -349,20 +355,6 @@
"description": "The name of the generated .sas program, which can be used to deploy the app using only SAS Studio. By default, this will be the name of the target.",
"examples": ["viya.sas", "sas9.sas"]
},
"buildOutputFolder": {
"$id": "#/properties/buildConfig/properties/buildOutputFolder",
"type": "string",
"title": "buildOutputFolder",
"description": "The name of the folder containing the compiled output. The `sasjs build` command will take all of the subfolders here as inputs to create the build pack. By default this will be named `sasjsbuild`.",
"default": "sasjsbuild"
},
"buildResultsFolder": {
"$id": "#/properties/buildConfig/properties/buildResultsFolder",
"type": "string",
"title": "buildResultsFolder",
"description": "The name of the folder containing the output (eg logs, ODS output) from `sasjs run`. By default this will be named `sasjsresults`.",
"default": "sasjsresults"
},
"initProgram": {
"$id": "#/properties/buildConfig/properties/initProgram",
"type": "string",
Expand Down Expand Up @@ -957,6 +949,12 @@
},
"programFolders": {
"$ref": "#/properties/programFolders"
},
"sasjsBuildFolder": {
"$ref": "#properties/sasjsBuildFolder"
},
"sasjsResultsFolder": {
"$ref": "#properties/sasjsResultsFolder"
}
}
}
Expand Down

0 comments on commit 749fa65

Please sign in to comment.