prosemirror-state
Advanced tools
Comparing version 1.3.0 to 1.3.1
@@ -0,1 +1,7 @@ | ||
## 1.3.1 (2019-11-19) | ||
### Bug fixes | ||
The file referred to in the package's `module` field now is compiled down to ES5. | ||
## 1.3.0 (2019-11-08) | ||
@@ -2,0 +8,0 @@ |
{ | ||
"name": "prosemirror-state", | ||
"version": "1.3.0", | ||
"version": "1.3.1", | ||
"description": "ProseMirror editor state", | ||
"main": "dist/index.js", | ||
"module": "src/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/index.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
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
283241
17
2968