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

prosemirror-schema-basic

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-schema-basic - npm Package Compare versions

Comparing version 1.0.1 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.1 (2019-04-18)

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

15

dist/schema-basic.js

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

var pDOM = ["p", 0];
var blockquoteDOM = ["blockquote", 0];
var hrDOM = ["hr"];
var preDOM = ["pre", ["code", 0]];
var brDOM = ["br"];
var pDOM = ["p", 0], blockquoteDOM = ["blockquote", 0], hrDOM = ["hr"],
preDOM = ["pre", ["code", 0]], brDOM = ["br"];

@@ -117,5 +114,3 @@ // :: Object

var emDOM = ["em", 0];
var strongDOM = ["strong", 0];
var codeDOM = ["code", 0];
var emDOM = ["em", 0], strongDOM = ["strong", 0], codeDOM = ["code", 0];

@@ -168,3 +163,3 @@ // :: Object [Specs](#model.MarkSpec) for the marks in the schema.

// :: Schema
// This schema rougly corresponds to the document schema used by
// This schema roughly corresponds to the document schema used by
// [CommonMark](http://commonmark.org/), minus the list elements,

@@ -178,5 +173,5 @@ // which are defined in the [`prosemirror-schema-list`](#schema-list)

exports.marks = marks;
exports.nodes = nodes;
exports.marks = marks;
exports.schema = schema;
//# sourceMappingURL=schema-basic.js.map
{
"name": "prosemirror-schema-basic",
"version": "1.0.1",
"version": "1.1.0",
"description": "Basic schema elements for ProseMirror",
"main": "dist/schema-basic.js",
"module": "src/schema-basic.js",
"license": "MIT",

@@ -22,4 +23,4 @@ "maintainers": [

"devDependencies": {
"rollup": "^0.49.0",
"rollup-plugin-buble": "^0.15.0"
"rollup": "^1.26.3",
"@rollup/plugin-buble": "^0.20.0"
},

@@ -26,0 +27,0 @@ "scripts": {

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

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

@@ -152,3 +152,3 @@ import {Schema} from "prosemirror-model"

// :: Schema
// This schema rougly corresponds to the document schema used by
// This schema roughly corresponds to the document schema used by
// [CommonMark](http://commonmark.org/), minus the list elements,

@@ -155,0 +155,0 @@ // which are defined in the [`prosemirror-schema-list`](#schema-list)

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