fix: export on netlify-cms and maps on esm (#2244)

This commit is contained in:
Tony Alves
2019-03-25 16:23:24 -07:00
committed by Shawn Erquhart
parent 9fccd7b0e5
commit 6ffd13b946
28 changed files with 31 additions and 29 deletions

View File

@ -31,5 +31,7 @@ if (typeof window !== 'undefined') {
}
}
export const NetlifyCms = CMS;
export { CMS as default };
export const NetlifyCms = {
...CMS,
};
export default CMS;