UNPKG

@nx-dotnet/core

Version:

- Have an existing nx workspace. For creating this, see [nrwl's documentation](https://nx.dev/latest/angular/getting-started/nx-setup). - .NET SDK is installed, and `dotnet` is available on the path. For help on this, see [Microsoft's documentation](https

17 lines 577 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getSwaggerExecutorConfiguration = getSwaggerExecutorConfiguration; /** * Returns a TargetConfiguration for the nx-dotnet/core:build executor */ function getSwaggerExecutorConfiguration(outputDirectory) { return { executor: '@nx-dotnet/core:update-swagger', outputs: [`{workspaceRoot}/${outputDirectory}`], options: { output: outputDirectory, }, dependsOn: ['build'], }; } //# sourceMappingURL=swagger-executor-configuration.js.map