@untool/express
Advanced tools
Comparing version 1.4.1 to 1.5.0
@@ -6,2 +6,13 @@ # Change Log | ||
# [1.5.0](https://github.com/untool/untool/compare/v1.4.1...v1.5.0) (2019-03-26) | ||
### Features | ||
* **core:** add "absolutePath" keyword to ajv config validation ([7dca480](https://github.com/untool/untool/commit/7dca480)) | ||
## [1.4.1](https://github.com/untool/untool/compare/v1.4.0...v1.4.1) (2019-03-22) | ||
@@ -8,0 +19,0 @@ |
{ | ||
"name": "@untool/express", | ||
"version": "1.4.1", | ||
"version": "1.5.0", | ||
"description": "untool express mixin", | ||
@@ -19,4 +19,4 @@ "repository": { | ||
"dependencies": { | ||
"@untool/core": "^1.4.1", | ||
"@untool/yargs": "^1.4.1", | ||
"@untool/core": "^1.5.0", | ||
"@untool/yargs": "^1.5.0", | ||
"chalk": "^2.4.2", | ||
@@ -44,3 +44,3 @@ "debug": "^4.0.0", | ||
}, | ||
"gitHead": "94d805ff9404253b9293dd2f1752fd9a821318b4" | ||
"gitHead": "36f274b1011cb84f4219eb82770f1784a726a4b2" | ||
} |
@@ -18,4 +18,4 @@ 'use strict'; | ||
properties: { | ||
keyFile: { type: 'string', minLength: 1 }, | ||
certFile: { type: 'string', minLength: 1 }, | ||
keyFile: { type: 'string', minLength: 1, absolutePath: true }, | ||
certFile: { type: 'string', minLength: 1, absolutePath: true }, | ||
}, | ||
@@ -28,5 +28,5 @@ }, | ||
port: { oneOf: [{ type: 'string' }, { type: 'number' }] }, | ||
distDir: { type: 'string', minLength: 1 }, | ||
distDir: { type: 'string', minLength: 1, absolutePath: true }, | ||
gracePeriod: { type: 'number' }, | ||
}, | ||
}; |
39504
Updated@untool/core@^1.5.0
Updated@untool/yargs@^1.5.0