feat(yaml): support comments ()

This commit is contained in:
Erez Rokah
2020-04-07 15:00:06 +03:00
committed by GitHub
parent 4489b6ff49
commit 4afbbdd8a9
98 changed files with 458 additions and 185 deletions
cypress/fixtures
Git Gateway (GitHub) Backend Editorial Workflow__can change status on and publish multiple entries.jsonGit Gateway (GitHub) Backend Editorial Workflow__can change workflow status.jsonGit Gateway (GitHub) Backend Editorial Workflow__can create an entry.jsonGit Gateway (GitHub) Backend Editorial Workflow__can delete an entry.jsonGit Gateway (GitHub) Backend Editorial Workflow__can publish an editorial workflow entry.jsonGit Gateway (GitHub) Backend Editorial Workflow__can update an entry.jsonGit Gateway (GitHub) Backend Editorial Workflow__can update workflow status from within the editor.jsonGit Gateway (GitHub) Backend Media Library - Large Media__can publish entry with image.jsonGit Gateway (GitHub) Backend Media Library - Large Media__can save entry with image.jsonGit Gateway (GitHub) Backend Media Library - Large Media__should not show draft entry image in global media library.jsonGit Gateway (GitHub) Backend Media Library - Large Media__should show published entry image in global media library.jsonGit Gateway (GitHub) Backend Media Library - Large Media__should show published entry image in grid view.jsonGit Gateway (GitHub) Backend Simple Workflow__can create an entry.jsonGit Gateway (GitLab) Backend Editorial Workflow__can change status on and publish multiple entries.jsonGit Gateway (GitLab) Backend Editorial Workflow__can change workflow status.jsonGit Gateway (GitLab) Backend Editorial Workflow__can create an entry.jsonGit Gateway (GitLab) Backend Editorial Workflow__can delete an entry.jsonGit Gateway (GitLab) Backend Editorial Workflow__can publish an editorial workflow entry.jsonGit Gateway (GitLab) Backend Editorial Workflow__can update an entry.jsonGit Gateway (GitLab) Backend Editorial Workflow__can update workflow status from within the editor.jsonGit Gateway (GitLab) Backend Media Library - Large Media__can publish entry with image.jsonGit Gateway (GitLab) Backend Media Library - Large Media__can save entry with image.jsonGit Gateway (GitLab) Backend Media Library - Large Media__should not show draft entry image in global media library.jsonGit Gateway (GitLab) Backend Media Library - Large Media__should show published entry image in global media library.jsonGit Gateway (GitLab) Backend Media Library - Large Media__should show published entry image in grid view.jsonGit Gateway (GitLab) Backend Simple Workflow__can create an entry.jsonGitHub Backend Media Library - GraphQL API__can publish entry with image.jsonGitHub Backend Media Library - GraphQL API__can save entry with image.jsonGitHub Backend Media Library - GraphQL API__should not show draft entry image in global media library.jsonGitHub Backend Media Library - GraphQL API__should show published entry image in global media library.jsonGitHub Backend Media Library - GraphQL API__should show published entry image in grid view.jsonGitHub Backend Media Library - REST API__can publish entry with image.jsonGitHub Backend Media Library - REST API__can save entry with image.jsonGitHub Backend Media Library - REST API__should not show draft entry image in global media library.jsonGitHub Backend Media Library - REST API__should show published entry image in global media library.jsonGitHub Backend Media Library - REST API__should show published entry image in grid view.jsonGitHub Backend Simple Workflow - GraphQL API__can create an entry.jsonGitHub Backend Simple Workflow - REST API__can create an entry.jsonGitLab Backend Editorial Workflow__can change status on and publish multiple entries.jsonGitLab Backend Editorial Workflow__can change workflow status.jsonGitLab Backend Editorial Workflow__can create an entry.jsonGitLab Backend Editorial Workflow__can delete an entry.jsonGitLab Backend Editorial Workflow__can publish an editorial workflow entry.jsonGitLab Backend Editorial Workflow__can update an entry.jsonGitLab Backend Editorial Workflow__can update workflow status from within the editor.jsonGitLab Backend Media Library - REST API__can publish entry with image.jsonGitLab Backend Media Library - REST API__can save entry with image.jsonGitLab Backend Media Library - REST API__should not show draft entry image in global media library.jsonGitLab Backend Media Library - REST API__should show published entry image in global media library.jsonGitLab Backend Media Library - REST API__should show published entry image in grid view.jsonGitLab Backend Simple Workflow__can create an entry.jsonGithub Backend Editorial Workflow - GraphQL API - Open Authoring__can change entry status from fork.jsonGithub Backend Editorial Workflow - GraphQL API - Open Authoring__can create an entry on fork.jsonGithub Backend Editorial Workflow - GraphQL API - Open Authoring__can create an entry.jsonGithub Backend Editorial Workflow - GraphQL API - Open Authoring__can delete review entry from fork.jsonGithub Backend Editorial Workflow - GraphQL API - Open Authoring__can publish an editorial workflow entry.jsonGithub Backend Editorial Workflow - GraphQL API - Open Authoring__can return entry to draft and delete it.jsonGithub Backend Editorial Workflow - GraphQL API - Open Authoring__can update a draft entry on fork.jsonGithub Backend Editorial Workflow - GraphQL API - Open Authoring__can update an entry.jsonGithub Backend Editorial Workflow - GraphQL API__can change status on and publish multiple entries.jsonGithub Backend Editorial Workflow - GraphQL API__can change workflow status.jsonGithub Backend Editorial Workflow - GraphQL API__can create an entry.jsonGithub Backend Editorial Workflow - GraphQL API__can delete an entry.jsonGithub Backend Editorial Workflow - GraphQL API__can publish an editorial workflow entry.jsonGithub Backend Editorial Workflow - GraphQL API__can update an entry.jsonGithub Backend Editorial Workflow - GraphQL API__can update workflow status from within the editor.jsonGithub Backend Editorial Workflow - REST API - Open Authoring__can change entry status from fork.jsonGithub Backend Editorial Workflow - REST API - Open Authoring__can create an entry on fork.jsonGithub Backend Editorial Workflow - REST API - Open Authoring__can create an entry.jsonGithub Backend Editorial Workflow - REST API - Open Authoring__can delete review entry from fork.jsonGithub Backend Editorial Workflow - REST API - Open Authoring__can publish an editorial workflow entry.jsonGithub Backend Editorial Workflow - REST API - Open Authoring__can return entry to draft and delete it.jsonGithub Backend Editorial Workflow - REST API - Open Authoring__can update a draft entry on fork.jsonGithub Backend Editorial Workflow - REST API - Open Authoring__can update an entry.jsonGithub Backend Editorial Workflow - REST API__can change status on and publish multiple entries.jsonGithub Backend Editorial Workflow - REST API__can change workflow status.jsonGithub Backend Editorial Workflow - REST API__can create an entry.jsonGithub Backend Editorial Workflow - REST API__can delete an entry.jsonGithub Backend Editorial Workflow - REST API__can publish an editorial workflow entry.jsonGithub Backend Editorial Workflow - REST API__can update an entry.jsonGithub Backend Editorial Workflow - REST API__can update workflow status from within the editor.json
packages
netlify-cms-core
netlify-cms-widget-date/src
netlify-cms-widget-datetime/src
netlify-cms-widget-markdown/src/MarkdownControl
website/content/docs
yarn.lock

@ -7,7 +7,7 @@ const DatePreview = ({ value }) => (
);
DatePreview.propTypes = {
value: PropTypes.object,
value: PropTypes.oneOfType([PropTypes.object, PropTypes.string]),
};
export default DatePreview;