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

prosemirror-collab

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

prosemirror-collab - npm Package Compare versions

Comparing version 1.1.2 to 1.2.0

6

CHANGELOG.md

@@ -0,1 +1,7 @@

## 1.2.0 (2019-11-08)
### New features
Add a `module` field to package json file.
## 1.1.2 (2019-05-29)

@@ -2,0 +8,0 @@

4

dist/collab.js

@@ -183,7 +183,7 @@ 'use strict';

exports.collab = collab;
exports.getVersion = getVersion;
exports.rebaseSteps = rebaseSteps;
exports.collab = collab;
exports.receiveTransaction = receiveTransaction;
exports.sendableSteps = sendableSteps;
exports.getVersion = getVersion;
//# sourceMappingURL=collab.js.map
{
"name": "prosemirror-collab",
"version": "1.1.2",
"version": "1.2.0",
"description": "Collaborative editing for ProseMirror",
"main": "dist/collab.js",
"module": "src/collab.js",
"license": "MIT",

@@ -28,4 +29,4 @@ "maintainers": [

"prosemirror-transform": "^1.0.0",
"rollup": "^0.49.0",
"rollup-plugin-buble": "^0.15.0"
"rollup": "^1.26.3",
"@rollup/plugin-buble": "^0.20.0"
},

@@ -32,0 +33,0 @@ "scripts": {

@@ -1,7 +0,12 @@

module.exports = {
input: "./src/collab.js",
output: {format: "cjs", file: "dist/collab.js"},
sourcemap: true,
plugins: [require("rollup-plugin-buble")()],
import buble from '@rollup/plugin-buble'
export default {
input: './src/collab.js',
output: {
dir: 'dist',
format: 'cjs',
sourcemap: true
},
plugins: [buble()],
external(id) { return !/^[\.\/]/.test(id) }
}

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