prosemirror-test-builder
Advanced tools
Comparing version 1.0.3 to 1.0.4
@@ -0,1 +1,7 @@ | ||
## 1.0.4 (2021-04-27) | ||
### Bug fixes | ||
Treat ProseMirror libraries as peer dependencies, to avoid duplicate libraries when using this. | ||
## 1.0.3 (2020-01-28) | ||
@@ -2,0 +8,0 @@ |
{ | ||
"name": "prosemirror-test-builder", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "Helpers for programatically building ProseMirror test documents", | ||
@@ -19,3 +19,3 @@ "main": "dist/index.js", | ||
}, | ||
"dependencies": { | ||
"peerDependencies": { | ||
"prosemirror-model": "^1.0.0", | ||
@@ -26,4 +26,4 @@ "prosemirror-schema-basic": "^1.0.0", | ||
"devDependencies": { | ||
"rollup": "^1.26.3", | ||
"@rollup/plugin-buble": "^0.20.0" | ||
"rollup": "^2.26.3", | ||
"@rollup/plugin-buble": "^0.21.3" | ||
}, | ||
@@ -30,0 +30,0 @@ "scripts": { |
@@ -6,11 +6,12 @@ module.exports = { | ||
format: 'cjs', | ||
sourcemap: true | ||
sourcemap: true, | ||
exports: "auto" | ||
}, { | ||
file: 'dist/index.es.js', | ||
format: 'es', | ||
sourcemap: true | ||
sourcemap: true, | ||
exports: "auto" | ||
}], | ||
sourcemap: true, | ||
plugins: [require('@rollup/plugin-buble')()], | ||
external(id) { return !/^[\.\/]/.test(id) } | ||
external(id) { return id[0] != "." && !require("path").isAbsolute(id) } | ||
} |
Sorry, the diff of this file is not supported yet
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
38076
352
- Removedprosemirror-model@^1.0.0
- Removedprosemirror-schema-basic@^1.0.0
- Removedprosemirror-schema-list@^1.0.0