@doist/typist 1.4.5 → 1.4.6

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/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [1.4.6](https://github.com/Doist/typist/compare/v1.4.5...v1.4.6) (2023-08-24)
2
+
3
+ ### Bug Fixes
4
+
5
+ - **deps:** revert update gfm strikethrough and autolink literal packages to v1 ([#408](https://github.com/Doist/typist/issues/408)) ([c231d95](https://github.com/Doist/typist/commit/c231d95bebc9905245930de9ef874c791f74413e))
6
+
1
7
  ## [1.4.5](https://github.com/Doist/typist/compare/v1.4.4...v1.4.5) (2023-08-23)
2
8
 
3
9
  ### Bug Fixes
@@ -20,7 +20,7 @@ function remarkAutolinkLiteral() {
20
20
  list.push(value);
21
21
  }
22
22
  add('micromarkExtensions', gfmAutolinkLiteral);
23
- add('fromMarkdownExtensions', gfmAutolinkLiteralFromMarkdown());
24
- add('toMarkdownExtensions', gfmAutolinkLiteralToMarkdown());
23
+ add('fromMarkdownExtensions', gfmAutolinkLiteralFromMarkdown);
24
+ add('toMarkdownExtensions', gfmAutolinkLiteralToMarkdown);
25
25
  }
26
26
  export { remarkAutolinkLiteral };
@@ -20,7 +20,7 @@ function remarkStrikethrough(options = {}) {
20
20
  list.push(value);
21
21
  }
22
22
  add('micromarkExtensions', gfmStrikethrough(options));
23
- add('fromMarkdownExtensions', gfmStrikethroughFromMarkdown());
24
- add('toMarkdownExtensions', gfmStrikethroughToMarkdown());
23
+ add('fromMarkdownExtensions', gfmStrikethroughFromMarkdown);
24
+ add('toMarkdownExtensions', gfmStrikethroughToMarkdown);
25
25
  }
26
26
  export { remarkStrikethrough };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@doist/typist",
3
3
  "description": "The mighty Tiptap-based rich-text editor React component that powers Doist products.",
4
- "version": "1.4.5",
4
+ "version": "1.4.6",
5
5
  "license": "MIT",
6
6
  "homepage": "https://typist.doist.dev/",
7
7
  "repository": "https://github.com/Doist/typist",
@@ -97,7 +97,7 @@
97
97
  "@testing-library/jest-dom": "6.0.1",
98
98
  "@testing-library/react": "14.0.0",
99
99
  "@types/lodash-es": "4.17.8",
100
- "@types/react": "18.2.20",
100
+ "@types/react": "18.2.21",
101
101
  "@types/react-dom": "18.2.7",
102
102
  "@types/react-syntax-highlighter": "15.5.7",
103
103
  "@types/turndown": "5.0.1",
@@ -119,7 +119,7 @@
119
119
  "ignore-sync": "7.0.1",
120
120
  "is-ci": "3.0.1",
121
121
  "jsdom": "22.1.0",
122
- "lint-staged": "14.0.0",
122
+ "lint-staged": "14.0.1",
123
123
  "npm-run-all": "4.1.5",
124
124
  "prettier": "3.0.2",
125
125
  "react": "18.2.0",
@@ -128,7 +128,7 @@
128
128
  "react-markdown": "8.0.7",
129
129
  "react-syntax-highlighter": "15.5.0",
130
130
  "rimraf": "5.0.1",
131
- "semantic-release": "21.0.7",
131
+ "semantic-release": "21.0.9",
132
132
  "storybook": "7.3.2",
133
133
  "storybook-css-modules": "1.0.8",
134
134
  "type-fest": "4.2.0",
@@ -141,10 +141,10 @@
141
141
  "emoji-regex": "^10.2.1",
142
142
  "hast-util-is-element": "^2.1.0",
143
143
  "lodash-es": "^4.17.21",
144
- "mdast-util-gfm-autolink-literal": "^2.0.0",
145
- "mdast-util-gfm-strikethrough": "^2.0.0",
146
- "micromark-extension-gfm-autolink-literal": "^2.0.0",
147
- "micromark-extension-gfm-strikethrough": "^2.0.0",
144
+ "mdast-util-gfm-autolink-literal": "^1.0.0",
145
+ "mdast-util-gfm-strikethrough": "^1.0.0",
146
+ "micromark-extension-gfm-autolink-literal": "^1.0.0",
147
+ "micromark-extension-gfm-strikethrough": "^1.0.0",
148
148
  "react": "^17.0.0 || ^18.0.0",
149
149
  "react-dom": "^17.0.0 || ^18.0.0",
150
150
  "rehype": "^12.0.0",