diff --git a/web/.eslintignore b/web/.eslintignore index 0799251cf..8310f82be 100644 --- a/web/.eslintignore +++ b/web/.eslintignore @@ -5,7 +5,4 @@ dist # don't lint nyc coverage output coverage # don't lint generated code -src/api/apis -src/api/models -src/api/index.ts -src/api/runtime.ts +api/ diff --git a/web/azure-pipelines.yml b/web/azure-pipelines.yml index c94c25568..4352991cf 100644 --- a/web/azure-pipelines.yml +++ b/web/azure-pipelines.yml @@ -26,7 +26,7 @@ stages: docker run --rm -v $(pwd):/local openapitools/openapi-generator-cli generate -i /local/swagger.yaml -g typescript-fetch -o /local/web/api --additional-properties=typescriptThreePlus=true,supportsES6=true,npmName=authentik-api,npmVersion=1.0.0 - task: PublishPipelineArtifact@1 inputs: - targetPath: 'web/src/api/' + targetPath: 'web/api/' artifact: 'ts_swagger_client' publishLocation: 'pipeline' - stage: lint @@ -43,7 +43,7 @@ stages: inputs: buildType: 'current' artifactName: 'ts_swagger_client' - path: "web/src/api/" + path: "web/api/" - task: Npm@1 inputs: command: 'install' @@ -65,7 +65,7 @@ stages: inputs: buildType: 'current' artifactName: 'ts_swagger_client' - path: "web/src/api/" + path: "web/api/" - task: Npm@1 inputs: command: 'install' @@ -89,7 +89,7 @@ stages: inputs: buildType: 'current' artifactName: 'ts_swagger_client' - path: "web/src/api/" + path: "web/api/" - task: Npm@1 inputs: command: 'install' @@ -109,7 +109,7 @@ stages: inputs: buildType: 'current' artifactName: 'ts_swagger_client' - path: "web/src/api/" + path: "web/api/" - task: Bash@3 inputs: targetType: 'inline'