@domternal/pm 1.1.0 → 1.1.1

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +7 -4
package/README.md CHANGED
@@ -19,8 +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`. For the 1.1 release, both ranges are `>=1.1.0 <2.0.0`;
23
- upgrade core, pm, and the extensions together.
22
+ `@domternal/core`. For the 1.1.1 release, both ranges remain `>=1.1.0 <2.0.0`;
23
+ upgrade core, pm, and the extensions together to 1.1.1.
24
24
 
25
25
  ```bash
26
26
  pnpm add @domternal/pm
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@domternal/pm",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
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
- "scripts": {}
205
- }
207
+ "homepage": "https://domternal.dev"
208
+ }