Socket
Socket
Sign inDemoInstall

prosemirror-keymap

Package Overview
Dependencies
6
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.2 to 1.1.0

6

CHANGELOG.md

@@ -0,1 +1,7 @@

## 1.1.0 (2019-11-08)
### New features
Add a `module` field to package json file.
## 1.0.2 (2019-10-16)

@@ -2,0 +8,0 @@

2

dist/keymap.js

@@ -99,4 +99,4 @@ 'use strict';

exports.keydownHandler = keydownHandler;
exports.keymap = keymap;
exports.keydownHandler = keydownHandler;
//# sourceMappingURL=keymap.js.map
{
"name": "prosemirror-keymap",
"version": "1.0.2",
"version": "1.1.0",
"description": "Keymap plugin for ProseMirror",
"main": "dist/keymap.js",
"module": "src/keymap.js",
"license": "MIT",

@@ -19,3 +20,3 @@ "maintainers": [

"dependencies": {
"w3c-keyname": "^2.0.0",
"w3c-keyname": "^2.2.0",
"prosemirror-state": "^1.0.0"

@@ -26,4 +27,4 @@ },

"mocha": "^3.4.2",
"rollup": "^0.49.0",
"rollup-plugin-buble": "^0.15.0"
"rollup": "^1.26.3",
"@rollup/plugin-buble": "^0.20.0"
},

@@ -30,0 +31,0 @@ "scripts": {

@@ -1,7 +0,12 @@

module.exports = {
input: "./src/keymap.js",
output: {format: "cjs", file: "dist/keymap.js"},
sourcemap: true,
plugins: [require("rollup-plugin-buble")()],
import buble from '@rollup/plugin-buble'
export default {
input: './src/keymap.js',
output: {
dir: 'dist',
format: 'cjs',
sourcemap: true
},
plugins: [buble()],
external(id) { return !/^[\.\/]/.test(id) }
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc