From 6740952c1cb36a974d5c7da540fbc1a249e34ddd Mon Sep 17 00:00:00 2001 From: Lee Dohm Date: Mon, 15 May 2017 11:18:22 -0700 Subject: [PATCH] Add config schema for version pinned packages --- src/config-schema.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/config-schema.js b/src/config-schema.js index caacdead8..39f058555 100644 --- a/src/config-schema.js +++ b/src/config-schema.js @@ -34,6 +34,16 @@ const configSchema = { description: 'List of names of installed packages which are not loaded at startup.' }, + versionPinnedPackages: { + type: 'array', + default: [], + + items: { + type: 'string' + }, + + description: 'List of names of installed packages which are not automatically updated.' + }, customFileTypes: { type: 'object', default: {},