build-link-source.js 550 B

1234567891011121314151617
  1. /**
  2. * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. /* globals window */
  6. import ClassicEditor from '@ckeditor/ckeditor5-build-classic/src/ckeditor';
  7. import { CS_CONFIG } from '@ckeditor/ckeditor5-cloud-services/tests/_utils/cloud-services-config';
  8. import AutoLink from '@ckeditor/ckeditor5-link/src/autolink';
  9. window.CKEditorPlugins = {
  10. AutoLink
  11. };
  12. window.ClassicEditor = ClassicEditor;
  13. window.CS_CONFIG = CS_CONFIG;