UNPKG

@dev-thought/nx-deploy-it

Version:

[![npm version](https://badge.fury.io/js/%40dev-thought%2Fnx-deploy-it.svg)](https://www.npmjs.com/package/@dev-thought/nx-deploy-it) [![The MIT License](https://img.shields.io/badge/license-MIT-orange.svg?color=blue&style=flat-square)](http://opensource.

18 lines (17 loc) 806 B
import { BaseAdapter } from '../base.adapter'; import { Rule } from '@angular-devkit/schematics'; import { NxDeployItDeployBuilderSchema } from '../../builders/deploy/schema'; import { BuilderOutput, BuilderContext } from '@angular-devkit/architect'; import { Observable } from 'rxjs'; export declare class NestJSAdapter extends BaseAdapter { extendOptionsByUserInput(): Promise<void>; addRequiredDependencies(): { name: string; version: string; }[]; getApplicationTypeTemplate(): Rule; getApplicationTemplatePath(): string; getDeployActionConfiguration(): any; getDestroyActionConfiguration(): any; deploy(context: BuilderContext, cwd: string, options: NxDeployItDeployBuilderSchema, configuration: string, targetOptions: any): Observable<BuilderOutput>; }