style(changelog): add standard-version to automate releases and tags

This commit is contained in:
Amruth Pillai
2022-03-10 15:32:46 +01:00
parent 0f1c3a8142
commit 4b7e43424c
9 changed files with 797 additions and 50 deletions

View File

@ -5,6 +5,9 @@ import { useEffect } from 'react';
const DateWrapper: React.FC = ({ children }) => {
useEffect(() => {
dayjs.extend(relativeTime);
// Locales
require('dayjs/locale/kn');
}, []);
return <>{children}</>;