prepare for release

This commit is contained in:
Andy Miller 2022-01-12 15:26:29 -07:00
parent 21f76a1e34
commit 3e784a2f15
No known key found for this signature in database
GPG Key ID: 9F2CF38AEBDB0AE0
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@
// Some standard defines
define('GRAV', true);
define('GRAV_VERSION', '1.7.27');
define('GRAV_VERSION', '1.7.27.1');
define('GRAV_SCHEMA', '1.7.0_2020-11-20_1');
define('GRAV_TESTING', false);

View File

@ -100,7 +100,7 @@ trait AssetUtilsTrait
}
// Double check last character being
if ($type !== self::CSS_ASSET) {
if ($type === self::JS_ASSET || $type === self::JS_MODULE_ASSET) {
$file = rtrim($file, ' ;') . ';';
}