├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── collection.json ├── package.json ├── src ├── defaults.ts └── schematics │ ├── dynmod │ ├── dynmod.factory.ts │ ├── dynmod.schema.d.ts │ ├── files │ │ └── ts │ │ │ ├── __name__.module.ts │ │ │ ├── __name__.providers.ts │ │ │ ├── __name__.service.ts │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ └── interfaces │ │ │ ├── __name__-module-async-options.interface.ts │ │ │ ├── __name__-options-factory.interface.ts │ │ │ ├── __name__-options.interface.ts │ │ │ └── index.ts │ └── schema.json │ └── dynpkg │ ├── dynpkg.factory.ts │ ├── dynpkg.schema.d.ts │ ├── files │ └── ts │ │ ├── .gitignore │ │ ├── .prettierrc │ │ ├── README.md │ │ ├── nest-cli.json │ │ ├── package.json │ │ ├── src │ │ ├── __name__-client │ │ │ ├── __name__-client.controller.ts │ │ │ └── __name__-client.module.ts │ │ ├── __name__.module.ts │ │ ├── __name__.providers.ts │ │ ├── __name__.service.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── interfaces │ │ │ ├── __name__-module-async-options.interface.ts │ │ │ ├── __name__-options-factory.interface.ts │ │ │ ├── __name__-options.interface.ts │ │ │ └── index.ts │ │ └── main.ts │ │ ├── tsconfig.build.json │ │ ├── tsconfig.json │ │ └── tslint.json │ └── schema.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | RELEASE 1.0.0 2 | - initial release 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/README.md -------------------------------------------------------------------------------- /collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/collection.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/package.json -------------------------------------------------------------------------------- /src/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/defaults.ts -------------------------------------------------------------------------------- /src/schematics/dynmod/dynmod.factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynmod/dynmod.factory.ts -------------------------------------------------------------------------------- /src/schematics/dynmod/dynmod.schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynmod/dynmod.schema.d.ts -------------------------------------------------------------------------------- /src/schematics/dynmod/files/ts/__name__.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynmod/files/ts/__name__.module.ts -------------------------------------------------------------------------------- /src/schematics/dynmod/files/ts/__name__.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynmod/files/ts/__name__.providers.ts -------------------------------------------------------------------------------- /src/schematics/dynmod/files/ts/__name__.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynmod/files/ts/__name__.service.ts -------------------------------------------------------------------------------- /src/schematics/dynmod/files/ts/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynmod/files/ts/constants.ts -------------------------------------------------------------------------------- /src/schematics/dynmod/files/ts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynmod/files/ts/index.ts -------------------------------------------------------------------------------- /src/schematics/dynmod/files/ts/interfaces/__name__-module-async-options.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynmod/files/ts/interfaces/__name__-module-async-options.interface.ts -------------------------------------------------------------------------------- /src/schematics/dynmod/files/ts/interfaces/__name__-options-factory.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynmod/files/ts/interfaces/__name__-options-factory.interface.ts -------------------------------------------------------------------------------- /src/schematics/dynmod/files/ts/interfaces/__name__-options.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynmod/files/ts/interfaces/__name__-options.interface.ts -------------------------------------------------------------------------------- /src/schematics/dynmod/files/ts/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynmod/files/ts/interfaces/index.ts -------------------------------------------------------------------------------- /src/schematics/dynmod/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynmod/schema.json -------------------------------------------------------------------------------- /src/schematics/dynpkg/dynpkg.factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynpkg/dynpkg.factory.ts -------------------------------------------------------------------------------- /src/schematics/dynpkg/dynpkg.schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynpkg/dynpkg.schema.d.ts -------------------------------------------------------------------------------- /src/schematics/dynpkg/files/ts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynpkg/files/ts/.gitignore -------------------------------------------------------------------------------- /src/schematics/dynpkg/files/ts/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynpkg/files/ts/.prettierrc -------------------------------------------------------------------------------- /src/schematics/dynpkg/files/ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynpkg/files/ts/README.md -------------------------------------------------------------------------------- /src/schematics/dynpkg/files/ts/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynpkg/files/ts/nest-cli.json -------------------------------------------------------------------------------- /src/schematics/dynpkg/files/ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynpkg/files/ts/package.json -------------------------------------------------------------------------------- /src/schematics/dynpkg/files/ts/src/__name__-client/__name__-client.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynpkg/files/ts/src/__name__-client/__name__-client.controller.ts -------------------------------------------------------------------------------- /src/schematics/dynpkg/files/ts/src/__name__-client/__name__-client.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynpkg/files/ts/src/__name__-client/__name__-client.module.ts -------------------------------------------------------------------------------- /src/schematics/dynpkg/files/ts/src/__name__.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynpkg/files/ts/src/__name__.module.ts -------------------------------------------------------------------------------- /src/schematics/dynpkg/files/ts/src/__name__.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynpkg/files/ts/src/__name__.providers.ts -------------------------------------------------------------------------------- /src/schematics/dynpkg/files/ts/src/__name__.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynpkg/files/ts/src/__name__.service.ts -------------------------------------------------------------------------------- /src/schematics/dynpkg/files/ts/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynpkg/files/ts/src/constants.ts -------------------------------------------------------------------------------- /src/schematics/dynpkg/files/ts/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynpkg/files/ts/src/index.ts -------------------------------------------------------------------------------- /src/schematics/dynpkg/files/ts/src/interfaces/__name__-module-async-options.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynpkg/files/ts/src/interfaces/__name__-module-async-options.interface.ts -------------------------------------------------------------------------------- /src/schematics/dynpkg/files/ts/src/interfaces/__name__-options-factory.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynpkg/files/ts/src/interfaces/__name__-options-factory.interface.ts -------------------------------------------------------------------------------- /src/schematics/dynpkg/files/ts/src/interfaces/__name__-options.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynpkg/files/ts/src/interfaces/__name__-options.interface.ts -------------------------------------------------------------------------------- /src/schematics/dynpkg/files/ts/src/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynpkg/files/ts/src/interfaces/index.ts -------------------------------------------------------------------------------- /src/schematics/dynpkg/files/ts/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynpkg/files/ts/src/main.ts -------------------------------------------------------------------------------- /src/schematics/dynpkg/files/ts/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynpkg/files/ts/tsconfig.build.json -------------------------------------------------------------------------------- /src/schematics/dynpkg/files/ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynpkg/files/ts/tsconfig.json -------------------------------------------------------------------------------- /src/schematics/dynpkg/files/ts/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynpkg/files/ts/tslint.json -------------------------------------------------------------------------------- /src/schematics/dynpkg/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/src/schematics/dynpkg/schema.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nestjsplus/dyn-schematics/HEAD/tsconfig.json --------------------------------------------------------------------------------