prosemirror-history
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -0,1 +1,7 @@ | ||
## 1.1.1 (2019-11-19) | ||
### Bug fixes | ||
The file referred to in the package's `module` field now is compiled down to ES5. | ||
## 1.1.0 (2019-11-08) | ||
@@ -2,0 +8,0 @@ |
{ | ||
"name": "prosemirror-history", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "Undo history for ProseMirror", | ||
"main": "dist/history.js", | ||
"module": "src/history.js", | ||
"main": "dist/index.js", | ||
"module": "dist/index.mjs", | ||
"license": "MIT", | ||
@@ -8,0 +8,0 @@ "maintainers": [ |
@@ -1,12 +0,14 @@ | ||
import buble from '@rollup/plugin-buble' | ||
export default { | ||
module.exports = { | ||
input: './src/history.js', | ||
output: { | ||
dir: 'dist', | ||
output: [{ | ||
file: 'dist/index.js', | ||
format: 'cjs', | ||
sourcemap: true | ||
}, | ||
plugins: [buble()], | ||
}, { | ||
file: 'dist/index.mjs', | ||
format: 'es', | ||
sourcemap: true | ||
}], | ||
plugins: [require('@rollup/plugin-buble')()], | ||
external(id) { return !/^[\.\/]/.test(id) } | ||
} |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
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
123625
13
1204
1