@trxn/hapify-templates-nestjs-models-common
v2.2.5
Published
Hapify templates for nestjs models common features
Downloads
32
Readme
Hapify - NestJS Models common
This package contains the hapify templates to generate nestjs common services and modules for models.
Installation
npm install @trxn/hapify-templates-nestjs-models --save-dev
Usage
In your package.json
:
{
"name": "my-library",
"version": "1.0.0",
"hapify": { "extends": ["@trxn/hapify-templates-nestjs-models"] }
}
If you would like to extend or modify these properties, create a .hapifyrc.js
file in your projects root directory and export your desired modifications.
module.exports = {
extends: ['hapify-templates-nestjs-models'],
};
Or you can create a .hapifyrc.json
file in your projects root directory.
{ "extends": [ '@trxn/hapify-templates-nestjs-models' ] }