prosemirror-transform
Advanced tools
Comparing version 1.1.6 to 1.2.0
@@ -0,1 +1,7 @@ | ||
## 1.2.0 (2019-11-08) | ||
### New features | ||
Add a `module` field to package json file. | ||
## 1.1.6 (2019-11-01) | ||
@@ -2,0 +8,0 @@ |
{ | ||
"name": "prosemirror-transform", | ||
"version": "1.1.6", | ||
"version": "1.2.0", | ||
"description": "ProseMirror document transformations", | ||
"main": "dist/index.js", | ||
"module": "src/index.js", | ||
"license": "MIT", | ||
@@ -25,4 +26,4 @@ "maintainers": [ | ||
"prosemirror-test-builder": "^1.0.0", | ||
"rollup": "^0.49.0", | ||
"rollup-plugin-buble": "^0.15.0" | ||
"rollup": "^1.26.3", | ||
"@rollup/plugin-buble": "^0.20.0" | ||
}, | ||
@@ -29,0 +30,0 @@ "scripts": { |
@@ -1,7 +0,12 @@ | ||
module.exports = { | ||
input: "./src/index.js", | ||
output: {format: "cjs", file: "dist/index.js"}, | ||
sourcemap: true, | ||
plugins: [require("rollup-plugin-buble")()], | ||
import buble from '@rollup/plugin-buble' | ||
export default { | ||
input: './src/index.js', | ||
output: { | ||
dir: 'dist', | ||
format: 'cjs', | ||
sourcemap: true | ||
}, | ||
plugins: [buble()], | ||
external(id) { return !/^[\.\/]/.test(id) } | ||
} |
Sorry, the diff of this file is too big to display
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
285794
3014