Merge branch 'semicolon-hell' into 'master'

env.js: poner puntos y comas en variables

See merge request sutty/jekyll/sutty-base-jekyll-theme!25
This commit is contained in:
Nulo 2021-11-18 17:28:55 +00:00
commit dc0d258180

6
env.js
View file

@ -6,7 +6,7 @@ window.env = {
AIRBRAKE_PROJECT_KEY: '{{ site.env.AIRBRAKE_PROJECT_KEY }}', AIRBRAKE_PROJECT_KEY: '{{ site.env.AIRBRAKE_PROJECT_KEY }}',
JEKYLL_ENV: '{{ site.env.JEKYLL_ENV }}', JEKYLL_ENV: '{{ site.env.JEKYLL_ENV }}',
SPREE_URL: '{{ site.env.SPREE_URL }}' SPREE_URL: '{{ site.env.SPREE_URL }}'
} };
{% comment %} {% comment %}
Genera un site.json con las traducciones del sitio y los datos de los Genera un site.json con las traducciones del sitio y los datos de los
@ -25,7 +25,7 @@ window.site = {
}, },
{%- endfor -%} {%- endfor -%}
"i18n": {{ site.i18n | jsonify }} "i18n": {{ site.i18n | jsonify }}
} };
{%- comment -%} {%- comment -%}
Para agregar plantillas que se procesan con JS, las agregamos en Para agregar plantillas que se procesan con JS, las agregamos en
@ -50,4 +50,4 @@ window.templates = {
"payment_methods": {{ payment_methods | jsonify }}, "payment_methods": {{ payment_methods | jsonify }},
"recover_order": {{ recover_order | jsonify }}, "recover_order": {{ recover_order | jsonify }},
"shipping_methods": {{ shipping_methods | jsonify }}, "shipping_methods": {{ shipping_methods | jsonify }},
} };