Index: sitescripts/extensions/template/gecko.json |
diff --git a/sitescripts/extensions/template/gecko.json b/sitescripts/extensions/template/gecko.json |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1cfdca4970b95291279d57a13b92b6b1f0aab93e |
--- /dev/null |
+++ b/sitescripts/extensions/template/gecko.json |
@@ -0,0 +1,14 @@ |
+{ |
+ "addons": { |
+ {%- for extension in extensions %} |
Sebastian Noack
2018/03/08 02:39:22
Nit: The indentation is inconsistent with the {% e
tlucas
2018/03/08 09:23:05
Done.
|
+ "{{ extension.extensionID }}": { |
+ "updates": [ |
+ { "version": "{{ extension.version }}", |
Sebastian Noack
2018/03/08 02:39:22
Please wrap objects consistently:
{
"versi
tlucas
2018/03/08 09:23:05
Done.
|
+ "update_link": "{{ extension.update_link }}" }, |
+ "applications": { |
+ "gecko": { "strict_min_version": "{{ extension.min_version }}" } } |
+ ] |
+ } |
+ {%- endfor %} |
+ } |
+} |