prosemirror-keymap
Advanced tools
Comparing version 1.0.2 to 1.1.0
@@ -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 @@ |
@@ -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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
188
23421
Updatedw3c-keyname@^2.2.0