@domternal/pm 1.0.1 → 1.0.2
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 +7 -4
package/README.md
CHANGED
|
@@ -18,7 +18,8 @@ extension. You rarely install it yourself: it ships transitively with `@domterna
|
|
|
18
18
|
|
|
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
|
-
`@domternal/pm` as a peer dependency
|
|
21
|
+
`@domternal/pm` as a peer dependency with the same minor floor and next-major ceiling as
|
|
22
|
+
`@domternal/core`.
|
|
22
23
|
|
|
23
24
|
```bash
|
|
24
25
|
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.0.2",
|
|
4
4
|
"description": "ProseMirror package re-exports for Domternal",
|
|
5
5
|
"author": "https://github.com/ThomasNowHere",
|
|
6
6
|
"license": "MIT",
|
|
@@ -174,6 +174,10 @@
|
|
|
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
|
+
},
|
|
177
181
|
"dependencies": {
|
|
178
182
|
"prosemirror-commands": "^1.7.1",
|
|
179
183
|
"prosemirror-dropcursor": "^1.8.2",
|
|
@@ -200,6 +204,5 @@
|
|
|
200
204
|
"bugs": {
|
|
201
205
|
"url": "https://github.com/domternal/domternal/issues"
|
|
202
206
|
},
|
|
203
|
-
"homepage": "https://domternal.dev"
|
|
204
|
-
|
|
205
|
-
}
|
|
207
|
+
"homepage": "https://domternal.dev"
|
|
208
|
+
}
|