@domternal/pm 1.0.3 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/package.json +4 -7
package/README.md
CHANGED
|
@@ -19,7 +19,8 @@ extension. You rarely install it yourself: it ships transitively with `@domterna
|
|
|
19
19
|
Install it explicitly when you import ProseMirror primitives in your own code, or when a
|
|
20
20
|
strict peer resolver asks for it: every `@domternal/extension-*` package declares
|
|
21
21
|
`@domternal/pm` as a peer dependency with the same minor floor and next-major ceiling as
|
|
22
|
-
`@domternal/core`.
|
|
22
|
+
`@domternal/core`. For the 1.1 release, both ranges are `>=1.1.0 <2.0.0`;
|
|
23
|
+
upgrade core, pm, and the extensions together.
|
|
23
24
|
|
|
24
25
|
```bash
|
|
25
26
|
pnpm add @domternal/pm
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@domternal/pm",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "ProseMirror package re-exports for Domternal",
|
|
5
5
|
"author": "https://github.com/ThomasNowHere",
|
|
6
6
|
"license": "MIT",
|
|
@@ -174,10 +174,6 @@
|
|
|
174
174
|
"files": [
|
|
175
175
|
"src"
|
|
176
176
|
],
|
|
177
|
-
"scripts": {
|
|
178
|
-
"prepublishOnly": "node ../../scripts/prepare-publish-manifest.mjs",
|
|
179
|
-
"postpublish": "git checkout package.json"
|
|
180
|
-
},
|
|
181
177
|
"dependencies": {
|
|
182
178
|
"prosemirror-commands": "^1.7.1",
|
|
183
179
|
"prosemirror-dropcursor": "^1.8.2",
|
|
@@ -204,5 +200,6 @@
|
|
|
204
200
|
"bugs": {
|
|
205
201
|
"url": "https://github.com/domternal/domternal/issues"
|
|
206
202
|
},
|
|
207
|
-
"homepage": "https://domternal.dev"
|
|
208
|
-
}
|
|
203
|
+
"homepage": "https://domternal.dev",
|
|
204
|
+
"scripts": {}
|
|
205
|
+
}
|