diff options
-rwxr-xr-x | build.py | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -82,7 +82,11 @@ shutil.copy('style.css', 'target') shutil.copy('script.js', 'target') with open('target/data.json', 'w') as f: - json.dump(dict(unstable=unstable_features, versions=versions), f) + data = dict( + unstable = dict(features = unstable_features), + **versions + ) + json.dump(data, f) def write_features(f, id, features): |