hapify-templates-nestjs-models 1.64.5
Install from the command line:
Learn more about npm packages
$ npm install @tractr/hapify-templates-nestjs-models@1.64.5
Install via package.json:
"@tractr/hapify-templates-nestjs-models": "1.64.5"
About this version
This package contains the hapify templates to generate nestjs modules that agregate the common module and rest module.
npm install @tractr/hapify-templates-nestjs-models --save-dev
In your package.json
:
{
"name": "my-library",
"version": "1.0.0",
"hapify": { "extends": ["@tractr/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": [ '@tractr/hapify-templates-nestjs-models' ] }