From 890db7edc395f7674fcfdd1cac4329a5b73d6a8d Mon Sep 17 00:00:00 2001 From: Tim Sebastian Date: Thu, 2 Feb 2017 21:41:29 +1100 Subject: [PATCH] add absolutePath to records paths --- schemas/webpackOptionsSchema.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/schemas/webpackOptionsSchema.json b/schemas/webpackOptionsSchema.json index cfe9d14a7..8452f78e1 100644 --- a/schemas/webpackOptionsSchema.json +++ b/schemas/webpackOptionsSchema.json @@ -828,11 +828,13 @@ }, "recordsInputPath": { "description": "Store compiler state to a json file.", - "type": "string" + "type": "string", + "absolutePath": true }, "recordsOutputPath": { "description": "Load compiler state from a json file.", - "type": "string" + "type": "string", + "absolutePath": true }, "recordsPath": { "description": "Store/Load compiler state from/to a json file. This will result in persistent ids of modules and chunks. An absolute path is expected. `recordsPath` is used for `recordsInputPath` and `recordsOutputPath` if they left undefined.",