From b4039dbdc89367c250cd9f835b0d25c52dea6ae1 Mon Sep 17 00:00:00 2001 From: Chris Grayson Date: Sat, 15 Oct 2016 18:34:47 -0500 Subject: [PATCH] replace 'problems' key with 'exercises' in config.json - see #10 --- config.json | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/config.json b/config.json index 7e6d3e87..0c176c3f 100644 --- a/config.json +++ b/config.json @@ -4,19 +4,27 @@ "repository": "https://github.com/exercism/xpowershell", "checklist_issue": 4, "active": false, - "problems": [ - "hello-world", - "hamming" - ], "deprecated": [ ], "ignored": [ - "bin", - "docs", - "img" + "bin", + "docs", + "img" ], "foregone": [ + ], + "exercises": [ + { + "difficulty": 1, + "slug": "hello-world", + "topics": [] + }, + { + "difficulty": 1, + "slug": "hamming", + "topics": [] + } ] }