prosemirror-schema-basic
Advanced tools
Comparing version 1.0.1 to 1.1.0
@@ -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 @@ |
@@ -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
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
27904
308