2019-03-28 11:37:23 -07:00
|
|
|
import { NetlifyCmsCore as CMS } from 'netlify-cms-core';
|
|
|
|
import './backends';
|
|
|
|
import './widgets';
|
|
|
|
import './editor-components';
|
2019-11-14 11:25:04 +02:00
|
|
|
import './locales';
|
2019-03-28 11:37:23 -07:00
|
|
|
|
2019-04-04 11:16:06 -07:00
|
|
|
if (typeof window !== 'undefined') {
|
|
|
|
/**
|
|
|
|
* Log the version number.
|
|
|
|
*/
|
|
|
|
if (typeof NETLIFY_CMS_APP_VERSION === 'string') {
|
|
|
|
console.log(`netlify-cms-app ${NETLIFY_CMS_APP_VERSION}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-28 11:37:23 -07:00
|
|
|
export const NetlifyCmsApp = {
|
|
|
|
...CMS,
|
|
|
|
};
|
|
|
|
export default CMS;
|