Sha256: 7831d8c527e14fc584c1b4c4dcab1e19af7e349f0bbd4e1e41a41616b7aed85b
Contents?: true
Size: 799 Bytes
Versions: 4
Compression:
Stored size: 799 Bytes
Contents
// environment $CONFIG_DEBUG_ENVS: (dev development) !default; // environments to allow debug in $CONFIG_DEBUG: (index($CONFIG_DEBUG_ENVS, archetype-env()) != false) !default; // global debugging mode (enabled by default in $CONFIG_DEBUG_ENVS) $CONFIG_LOCALE: locale() !default; // the default locale $CONFIG_NAMESPACE: null !default; // the namespace to generate CSS within @mixin unless-archetype-module-initalized($module: null) { @if not archetype-init-state() and (not $module or do-once("archetype/init+#{$module}")) { @content; } } @mixin unless-archetype-initalized { @if not archetype-init-state() { @content; } }
Version data entries
4 entries across 4 versions & 1 rubygems