New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@milkdown/preset-gfm

Package Overview
Dependencies
Maintainers
1
Versions
112
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@milkdown/preset-gfm - npm Package Compare versions

Comparing version 4.6.9 to 4.7.0

13

CHANGELOG.md
# @milkdown/preset-gfm
## 4.7.0
### Minor Changes
- 804cbb5: Add support for clipboard and collaborative abilities.
### Patch Changes
- Updated dependencies [804cbb5]
- @milkdown/plugin-table@4.7.0
- @milkdown/preset-commonmark@4.7.0
- @milkdown/utils@4.7.0
## 4.6.9

@@ -4,0 +17,0 @@

6

lib/index.js
import { SupportedKeys as TableKeys, tableNodes, tablePlugins } from '@milkdown/plugin-table';
import { commonmark, SupportedKeys as CommonmarkKeys } from '@milkdown/preset-commonmark';
import { SupportedKeys as CommonmarkKeys, commonmarkNodes, commonmarkPlugins } from '@milkdown/preset-commonmark';
import { AtomList } from '@milkdown/utils';

@@ -8,4 +8,4 @@ import { urlPlugin } from './auto-link';

export const SupportedKeys = Object.assign(Object.assign(Object.assign({}, CommonmarkKeys), TableKeys), { StrikeThrough: 'StrikeThrough', TaskList: 'TaskList' });
export const gfmNodes = AtomList.create([...commonmark, ...tableNodes, strikeThrough(), taskListItem()]);
export const gfmPlugins = [...tablePlugins, urlPlugin];
export const gfmNodes = AtomList.create([...commonmarkNodes, ...tableNodes, strikeThrough(), taskListItem()]);
export const gfmPlugins = [...tablePlugins, ...commonmarkPlugins, urlPlugin];
export const gfm = [...gfmNodes, ...gfmPlugins];

@@ -12,0 +12,0 @@ export * from './strike-through';

{
"name": "@milkdown/preset-gfm",
"version": "4.6.9",
"version": "4.7.0",
"main": "lib/index.js",

@@ -20,5 +20,5 @@ "module": "lib/index.js",

"dependencies": {
"@milkdown/utils": "4.6.9",
"@milkdown/plugin-table": "4.6.9",
"@milkdown/preset-commonmark": "4.6.9",
"@milkdown/utils": "4.7.0",
"@milkdown/plugin-table": "4.7.0",
"@milkdown/preset-commonmark": "4.7.0",
"@types/prosemirror-schema-list": "^1.0.3",

@@ -25,0 +25,0 @@ "prosemirror-schema-list": "^1.1.4",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc