This repo contains the built files of the Formik package so we can easily point to it from the Dashboard repo.
The original Formik repo uses a monorepo structure meaning that we can't easily point to it from our package.json dependencies.
There are tools that exist to circumvent that (like gitpkg.vercel.app pointing to it with "formik": "https://gitpkg.vercel.app/plentific/formik/packages/formik?c7e7cf6e829f6b9d79cdacfd2fba66771c48b28b") but they are deemed unsafe as any code could be introduced on the gitpkg.vercel.app server.
- Make sure our file changes are up to date with the original Formik repo on that PR
- Make sure the
mainbranch of the fork is up to date with our Formik changes using that PR - Clone the fork repo locally
- Make sure you are on the
mainbranch - Install all the necessary dependency with
yarn(Formik usesyarnat the time of writing this) - Build the
Formikpackages locally usingyarn build - Copy the
distfolder frompackages/formikinto this repo - Create a PR to merge this repo's file update to
master - Point the dashboard's
Formikdependency to the new commit