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

prosemirror-schema-list

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

prosemirror-schema-list - npm Package Compare versions

Comparing version 1.0.4 to 1.1.0

6

CHANGELOG.md

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

## 1.1.0 (2019-11-08)
### New features
Add a `module` field to package json file.
## 1.0.4 (2019-10-08)

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

14

dist/schema-list.js

@@ -8,5 +8,3 @@ 'use strict';

var olDOM = ["ol", 0];
var ulDOM = ["ul", 0];
var liDOM = ["li", 0];
var olDOM = ["ol", 0], ulDOM = ["ul", 0], liDOM = ["li", 0];

@@ -249,10 +247,10 @@ // :: NodeSpec

exports.orderedList = orderedList;
exports.addListNodes = addListNodes;
exports.bulletList = bulletList;
exports.liftListItem = liftListItem;
exports.listItem = listItem;
exports.addListNodes = addListNodes;
exports.orderedList = orderedList;
exports.sinkListItem = sinkListItem;
exports.splitListItem = splitListItem;
exports.wrapInList = wrapInList;
exports.splitListItem = splitListItem;
exports.liftListItem = liftListItem;
exports.sinkListItem = sinkListItem;
//# sourceMappingURL=schema-list.js.map
{
"name": "prosemirror-schema-list",
"version": "1.0.4",
"version": "1.1.0",
"description": "List-related schema elements and commands for ProseMirror",
"main": "dist/schema-list.js",
"module": "src/schema-list.js",
"license": "MIT",

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

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

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

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

module.exports = {
input: "./src/schema-list.js",
output: {format: "cjs", file: "dist/schema-list.js"},
sourcemap: true,
plugins: [require("rollup-plugin-buble")()],
import buble from '@rollup/plugin-buble'
export default {
input: './src/schema-list.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