Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

prosemirror-test-builder

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

prosemirror-test-builder - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4

6

CHANGELOG.md

@@ -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 @@

8

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc