aboutsummaryrefslogtreecommitdiffstats
path: root/packages/monorepo-scripts
diff options
context:
space:
mode:
authorBrandon Millman <brandon.millman@gmail.com>2018-10-18 01:30:29 +0800
committerBrandon Millman <brandon.millman@gmail.com>2018-10-18 01:30:29 +0800
commit84057934c6cda3fe3e4f86cf686b163db017cf9e (patch)
tree0160c132e134fb04106f232834f0ed021d06ebd5 /packages/monorepo-scripts
parentaa1085c8f3866da4965c0102be27c0f5e19b3db6 (diff)
parentc767404ad09ca9fdacf9ab43c0e6b13fc70bffb9 (diff)
downloaddexon-0x-contracts-84057934c6cda3fe3e4f86cf686b163db017cf9e.tar
dexon-0x-contracts-84057934c6cda3fe3e4f86cf686b163db017cf9e.tar.gz
dexon-0x-contracts-84057934c6cda3fe3e4f86cf686b163db017cf9e.tar.bz2
dexon-0x-contracts-84057934c6cda3fe3e4f86cf686b163db017cf9e.tar.lz
dexon-0x-contracts-84057934c6cda3fe3e4f86cf686b163db017cf9e.tar.xz
dexon-0x-contracts-84057934c6cda3fe3e4f86cf686b163db017cf9e.tar.zst
dexon-0x-contracts-84057934c6cda3fe3e4f86cf686b163db017cf9e.zip
Merge branch 'development' into feature/website/asset-buyer-docs
* development: (31 commits) Update CODEOWNERS Update CODEOWNERS Update CODEOWNERS Add leo to CODEOWNERS on some packages fix(monorepo-scripts): Format date as UTC not local time. Bump max bundle size for instant fix: dont use enum string as type as typedoc gets confused feat: export AssetData from order-utils feat: export AssetData from utils chore: temporarily increase the bundle size for instant Remove order-utils from dependencies Run tests on circle CI Add tests for format and use toFixed instead of round for usd Remove expiry buffer seconds option from AssetBuyer init Add ts-optchain and use it instead of lodash get Hide USD price when ETH-USD price is not available Rename OrderDetailsRow to EthAmountRow fix: add Steve's github account to about page, and capitalize AppFolio correctly Put boundNoop in a util file Add tnxHash to buy button callbacks ...
Diffstat (limited to 'packages/monorepo-scripts')
-rw-r--r--packages/monorepo-scripts/CHANGELOG.json7
-rw-r--r--packages/monorepo-scripts/src/utils/changelog_utils.ts3
2 files changed, 8 insertions, 2 deletions
diff --git a/packages/monorepo-scripts/CHANGELOG.json b/packages/monorepo-scripts/CHANGELOG.json
index 4fd87c1d8..4797fd929 100644
--- a/packages/monorepo-scripts/CHANGELOG.json
+++ b/packages/monorepo-scripts/CHANGELOG.json
@@ -3,7 +3,12 @@
"version": "1.0.6",
"changes": [
{
- "note": "Add AssetBuyerError to the IGNORED_EXCESSIVE_TYPES array"
+ "note": "Render date formats in UTC to prevent conflicts when publishing in different timezones.",
+ "pr": 1143
+ },
+ {
+ "note": "Add AssetBuyerError to the IGNORED_EXCESSIVE_TYPES array",
+ "pr": 1139
}
]
},
diff --git a/packages/monorepo-scripts/src/utils/changelog_utils.ts b/packages/monorepo-scripts/src/utils/changelog_utils.ts
index 8058d222b..0b46bf670 100644
--- a/packages/monorepo-scripts/src/utils/changelog_utils.ts
+++ b/packages/monorepo-scripts/src/utils/changelog_utils.ts
@@ -19,7 +19,8 @@ CHANGELOG
export const changelogUtils = {
getChangelogMdTitle(versionChangelog: VersionChangelog): string {
- const date = moment(`${versionChangelog.timestamp}`, 'X').format('MMMM D, YYYY');
+ // Use UTC rather than the local machines time (formatted date time is +0:00)
+ const date = moment.utc(`${versionChangelog.timestamp}`, 'X').format('MMMM D, YYYY');
const title = `\n## v${versionChangelog.version} - _${date}_\n\n`;
return title;
},