@ckeditor/ckeditor5-markdown-gfm 38.2.0-alpha.1 → 39.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -4,7 +4,6 @@ GitHub Flavored Markdown support for CKEditor 5
4
4
  [![npm version](https://badge.fury.io/js/%40ckeditor%2Fckeditor5-markdown-gfm.svg)](https://www.npmjs.com/package/@ckeditor/ckeditor5-markdown-gfm)
5
5
  [![Coverage Status](https://coveralls.io/repos/github/ckeditor/ckeditor5/badge.svg?branch=master)](https://coveralls.io/github/ckeditor/ckeditor5?branch=master)
6
6
  [![Build Status](https://travis-ci.com/ckeditor/ckeditor5.svg?branch=master)](https://app.travis-ci.com/github/ckeditor/ckeditor5)
7
- ![Dependency Status](https://img.shields.io/librariesio/release/npm/@ckeditor/ckeditor5-markdown-gfm)
8
7
 
9
8
  This package implements the GitHub Flavored Markdown data processor for CKEditor 5.
10
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-markdown-gfm",
3
- "version": "38.2.0-alpha.1",
3
+ "version": "39.0.1",
4
4
  "description": "GitHub Flavored Markdown data processor for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -11,12 +11,11 @@
11
11
  "ckeditor5-dll"
12
12
  ],
13
13
  "main": "src/index.js",
14
- "type": "module",
15
14
  "dependencies": {
16
- "ckeditor5": "38.2.0-alpha.1",
15
+ "ckeditor5": "39.0.1",
17
16
  "marked": "4.0.12",
18
- "turndown": "^6.0.0",
19
- "turndown-plugin-gfm": "^1.0.2"
17
+ "turndown": "6.0.0",
18
+ "turndown-plugin-gfm": "1.0.2"
20
19
  },
21
20
  "engines": {
22
21
  "node": ">=16.0.0",
@@ -2,7 +2,7 @@
2
2
  * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
4
  */
5
- import type { Markdown } from './index.js';
5
+ import type { Markdown } from './index';
6
6
  declare module '@ckeditor/ckeditor5-core' {
7
7
  interface PluginsMap {
8
8
  [Markdown.pluginName]: Markdown;
@@ -5,7 +5,7 @@
5
5
  /**
6
6
  * @module markdown-gfm/gfmdataprocessor
7
7
  */
8
- import { type DataProcessor, type ViewDocument, type ViewDocumentFragment, type MatcherPattern } from 'ckeditor5/src/engine.js';
8
+ import { type DataProcessor, type ViewDocument, type ViewDocumentFragment, type MatcherPattern } from 'ckeditor5/src/engine';
9
9
  /**
10
10
  * This data processor implementation uses GitHub Flavored Markdown as input/output data.
11
11
  *
@@ -5,9 +5,9 @@
5
5
  /**
6
6
  * @module markdown-gfm/gfmdataprocessor
7
7
  */
8
- import { HtmlDataProcessor } from 'ckeditor5/src/engine.js';
9
- import markdown2html from './markdown2html/markdown2html.js';
10
- import html2markdown, { turndownService } from './html2markdown/html2markdown.js';
8
+ import { HtmlDataProcessor } from 'ckeditor5/src/engine';
9
+ import markdown2html from './markdown2html/markdown2html';
10
+ import html2markdown, { turndownService } from './html2markdown/html2markdown';
11
11
  /**
12
12
  * This data processor implementation uses GitHub Flavored Markdown as input/output data.
13
13
  *
package/src/index.d.ts CHANGED
@@ -5,5 +5,5 @@
5
5
  /**
6
6
  * @module markdown-gfm
7
7
  */
8
- export { default as Markdown } from './markdown.js';
9
- import './augmentation.js';
8
+ export { default as Markdown } from './markdown';
9
+ import './augmentation';
package/src/index.js CHANGED
@@ -5,5 +5,5 @@
5
5
  /**
6
6
  * @module markdown-gfm
7
7
  */
8
- export { default as Markdown } from './markdown.js';
9
- import './augmentation.js';
8
+ export { default as Markdown } from './markdown';
9
+ import './augmentation';
package/src/markdown.d.ts CHANGED
@@ -5,7 +5,7 @@
5
5
  /**
6
6
  * @module markdown-gfm/markdown
7
7
  */
8
- import { Plugin, type Editor } from 'ckeditor5/src/core.js';
8
+ import { Plugin, type Editor } from 'ckeditor5/src/core';
9
9
  /**
10
10
  * The GitHub Flavored Markdown (GFM) plugin.
11
11
  *
package/src/markdown.js CHANGED
@@ -5,8 +5,8 @@
5
5
  /**
6
6
  * @module markdown-gfm/markdown
7
7
  */
8
- import { Plugin } from 'ckeditor5/src/core.js';
9
- import GFMDataProcessor from './gfmdataprocessor.js';
8
+ import { Plugin } from 'ckeditor5/src/core';
9
+ import GFMDataProcessor from './gfmdataprocessor';
10
10
  /**
11
11
  * The GitHub Flavored Markdown (GFM) plugin.
12
12
  *