@nestjs/schematics
Advanced tools
Comparing version 5.8.0 to 5.9.0
@@ -5,62 +5,76 @@ { | ||
"application": { | ||
"factory": "./lib/factories/application.factory#main", | ||
"description": "Create a Nest application." | ||
"factory": "./lib/application/application.factory#main", | ||
"description": "Create a Nest application.", | ||
"schema": "./lib/application/schema.json" | ||
}, | ||
"class": { | ||
"factory": "./lib/factories/class.factory#main", | ||
"description": "Create a new class." | ||
"factory": "./lib/class/class.factory#main", | ||
"description": "Create a new class.", | ||
"schema": "./lib/class/schema.json" | ||
}, | ||
"configuration": { | ||
"factory": "./lib/factories/configuration.factory#main", | ||
"description": "Create a NestCLI configuration file." | ||
}, | ||
"controller": { | ||
"factory": "./lib/factories/controller.factory#main", | ||
"description": "Create a Nest controller." | ||
"factory": "./lib/controller/controller.factory#main", | ||
"description": "Create a Nest controller.", | ||
"schema": "./lib/controller/schema.json" | ||
}, | ||
"decorator": { | ||
"factory": "./lib/factories/decorator.factory#main", | ||
"description": "Create a Nest decorator." | ||
"factory": "./lib/decorator/decorator.factory#main", | ||
"description": "Create a Nest decorator.", | ||
"schema": "./lib/decorator/schema.json" | ||
}, | ||
"exception": { | ||
"factory": "./lib/factories/exception.factory#main", | ||
"description": "Create a Nest exception." | ||
}, | ||
"filter": { | ||
"factory": "./lib/factories/filter.factory#main", | ||
"description": "Create a Nest filter." | ||
"factory": "./lib/filter/filter.factory#main", | ||
"description": "Create a Nest filter.", | ||
"schema": "./lib/filter/schema.json" | ||
}, | ||
"gateway": { | ||
"factory": "./lib/factories/gateway.factory#main", | ||
"description": "Create a Nest gateway." | ||
"factory": "./lib/gateway/gateway.factory#main", | ||
"description": "Create a Nest gateway.", | ||
"schema": "./lib/gateway/schema.json" | ||
}, | ||
"guard": { | ||
"factory": "./lib/factories/guard.factory#main", | ||
"description": "Create a Nest guard." | ||
"factory": "./lib/guard/guard.factory#main", | ||
"description": "Create a Nest guard.", | ||
"schema": "./lib/guard/schema.json" | ||
}, | ||
"interceptor": { | ||
"factory": "./lib/factories/interceptor.factory#main", | ||
"description": "Create a Nest interceptor." | ||
"factory": "./lib/interceptor/interceptor.factory#main", | ||
"description": "Create a Nest interceptor.", | ||
"schema": "./lib/interceptor/schema.json" | ||
}, | ||
"middleware": { | ||
"factory": "./lib/factories/middleware.factory#main", | ||
"description": "Create a Nest middleware." | ||
"factory": "./lib/middleware/middleware.factory#main", | ||
"description": "Create a Nest middleware.", | ||
"schema": "./lib/middleware/schema.json" | ||
}, | ||
"module": { | ||
"factory": "./lib/factories/module.factory#main", | ||
"description": "Create a Nest module." | ||
"factory": "./lib/module/module.factory#main", | ||
"description": "Create a Nest module.", | ||
"schema": "./lib/module/schema.json" | ||
}, | ||
"pipe": { | ||
"factory": "./lib/factories/pipe.factory#main", | ||
"description": "Create a Nest pipe." | ||
"factory": "./lib/pipe/pipe.factory#main", | ||
"description": "Create a Nest pipe.", | ||
"schema": "./lib/pipe/schema.json" | ||
}, | ||
"provider": { | ||
"factory": "./lib/factories/provider.factory#main", | ||
"description": "Create a Nest provider." | ||
"factory": "./lib/provider/provider.factory#main", | ||
"description": "Create a Nest provider.", | ||
"schema": "./lib/provider/schema.json" | ||
}, | ||
"service": { | ||
"factory": "./lib/factories/service.factory#main", | ||
"description": "Create a Nest service." | ||
"factory": "./lib/service/service.factory#main", | ||
"description": "Create a Nest service.", | ||
"schema": "./lib/service/schema.json" | ||
}, | ||
"configuration": { | ||
"factory": "./lib/configuration/configuration.factory#main", | ||
"description": "Create a Nest CLI configuration." | ||
}, | ||
"library": { | ||
"factory": "./lib/library/library.factory#main", | ||
"description": "Create a Nest library (mono-repo).", | ||
"schema": "./lib/library/schema.json" | ||
} | ||
} | ||
} | ||
} |
@@ -8,1 +8,2 @@ "use strict"; | ||
exports.DEFAULT_PATH_NAME = 'src'; | ||
exports.DEFAULT_LIB_PATH = 'projects'; |
{ | ||
"name": "@nestjs/schematics", | ||
"version": "5.8.0", | ||
"description": "Nestjs schematics project for @nestjs/cli", | ||
"version": "5.9.0", | ||
"description": "Nest - modern, fast, powerful node.js web framework (@schematics)", | ||
"main": "index.js", | ||
@@ -10,6 +10,6 @@ "publishConfig": { | ||
"scripts": { | ||
"build": "tsc --project tsconfig.json", | ||
"build": "rm -rf dist && tsc --project tsconfig.json", | ||
"lint:src": "tslint --project tsconfig.json", | ||
"lint:test": "tslint --project test/tsconfig.json", | ||
"test": "jest --no-cache --config test/jest-config.json --maxWorkers=1", | ||
"test": "jest --no-cache --config test/jest-config.json", | ||
"test:dev": "npm run -s test -- --watchAll" | ||
@@ -21,3 +21,6 @@ }, | ||
}, | ||
"author": "ThomRick", | ||
"contributors": [ | ||
"ThomRick", | ||
"Kamil Mysliwiec" | ||
], | ||
"license": "MIT", | ||
@@ -36,2 +39,3 @@ "bugs": { | ||
"@types/node": "^9.6.29", | ||
"gulp": "^3.9.1", | ||
"jest": "^23.5.0", | ||
@@ -38,0 +42,0 @@ "nyc": "^13.0.1", |
@@ -54,4 +54,4 @@ <p align="center"> | ||
* CLI Author - [Thomas Ricart](https://github.com/ThomRick) | ||
* CLI Author - [Thomas Ricart](https://github.com/ThomRick) and [Kamil Mysliwiec](https://github.com/kamilmysliwiec) | ||
* Website - [https://nestjs.com](https://nestjs.com/) | ||
* Twitter - [@nestframework](https://twitter.com/nestframework) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Misc. License Issues
License(Experimental) A package's licensing information has fine-grained problems.
Found 2 instances in 1 package
0
51940
7
50
1157
1