Skip to content
This repository was archived by the owner on Jun 27, 2020. It is now read-only.

Commit 4a9b6fb

Browse files
authored
Merge pull request #23 from deecewan/fix/metazone-load-order
Fix TZ aliases not working
2 parents 3df5630 + 6e37b30 commit 4a9b6fb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tasks/gen-package.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -361,8 +361,8 @@ function generatePackages(grunt) {
361361

362362
packages.forEach(pkg => {
363363
const list = files.
364-
concat(getTimeZoneList(pkg.timeZoneListType).map(p => srcBase + p)).
365-
concat(getLocaleList(pkg.localeListType).map(p => srcBase + p));
364+
concat(getLocaleList(pkg.localeListType).map(p => srcBase + p)).
365+
concat(getTimeZoneList(pkg.timeZoneListType).map(p => srcBase + p));
366366

367367
grunt.file.write(`${buildDir}/src/${pkg.name}.js`, Utill.getPolyfillPackageModule(list));
368368
});
@@ -435,4 +435,4 @@ module.exports = function(grunt) {
435435
generatePackages(grunt);
436436
browserifyDataFiles(grunt);
437437
});
438-
};
438+
};

0 commit comments

Comments
 (0)