Skip to content

Commit

Permalink
Merge pull request #20 from sasjs/doc-config
Browse files Browse the repository at this point in the history
feat(DocConfig): added 'DocConfig' for Configuration
  • Loading branch information
allanbowe authored Jan 20, 2021
2 parents ad1d9e4 + 3527cd9 commit ec9246f
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions src/types/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,26 @@ export interface Config {
export interface BuildConfig extends Config {
buildOutputFileName: string
}
export interface DeployConfig {
deployServicePack: boolean
deployScripts: string[]
}
export interface ServiceConfig extends Config {
serviceFolders: string[]
}
export interface JobConfig extends Config {
jobFolders: string[]
}
export interface DocConfig {
displayMacroCore: boolean
outDirectory: string
}
export interface DeployConfig {
deployServicePack: boolean
deployScripts: string[]
}
export interface StreamConfig {
assetPaths: string[]
streamWeb: boolean
streamWebFolder: string
webSourcePath: string
}

export interface AuthConfig {
access_token: string
refresh_token: string
Expand Down

0 comments on commit ec9246f

Please sign in to comment.