Skip to content

Commit 5f8fb91

Browse files
Fix for merge bundling rule, and version bump (fixes #660)
1 parent 585d221 commit 5f8fb91

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change Log
22

3+
## v4.1.16-alpha
4+
- Fix for `merge` bundling rule (#660)
5+
36
## v4.1.15-alpha
47
- Refactor `Password` into a instantiable `Hasher` class, service, and `Password` facade (#827)
58
- Change default hash cost back to 10 and fix legacy hash detection issue

app/defines.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace UserFrosting;
44

55
// Some standard defines
6-
define('UserFrosting\VERSION', '4.1.15-alpha');
6+
define('UserFrosting\VERSION', '4.1.16-alpha');
77
define('UserFrosting\DS', '/');
88
define('UserFrosting\PHP_MIN_VERSION', '5.6');
99
define('UserFrosting\DEBUG_CONFIG', false);

build/gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ gulp.task('bundle-build', () => {
102102
case 'merge':
103103
// If using this collision rule, keep in mind any bundling options will also be merged.
104104
// Inspect the produced 'bundle.config.json' file in the 'build' folder to ensure options are correct.
105-
config.bundle[bundleName] = merge(config.bundle[bundleName], currentConfig.bundle[bundleName]);
105+
config.bundle[bundleName] = merge(currentConfig.bundle[bundleName], config.bundle[bundleName]);
106106
break;
107107
case 'ignore':
108108
// Do nothing. This simply exists to prevent falling through to error catchment.

0 commit comments

Comments
 (0)