@domternal/react 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 +3 -0
  2. package/package.json +13 -11
package/README.md CHANGED
@@ -26,6 +26,9 @@ pnpm add @domternal/react @domternal/core @domternal/theme react react-dom
26
26
  @import '@domternal/theme';
27
27
  ```
28
28
 
29
+ This package is part of the coordinated Domternal 1.1.1 release.
30
+ Upgrade installed `@domternal/*` packages together.
31
+
29
32
  ## Usage
30
33
 
31
34
  The recommended pattern uses the composable `Domternal` component. It creates the editor and provides it
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@domternal/react",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "MIT-licensed React components for the Domternal rich text editor",
5
5
  "author": "https://github.com/ThomasNowHere",
6
6
  "license": "MIT",
@@ -25,6 +25,16 @@
25
25
  "react": ">=18",
26
26
  "react-dom": ">=18"
27
27
  },
28
+ "scripts": {
29
+ "build": "tsup",
30
+ "dev": "tsup --watch",
31
+ "lint": "eslint src",
32
+ "typecheck": "tsc --noEmit",
33
+ "prepublishOnly": "pnpm build && node ../../scripts/prepare-publish-manifest.mjs",
34
+ "postpublish": "git checkout package.json",
35
+ "test": "vitest run",
36
+ "test:watch": "vitest"
37
+ },
28
38
  "keywords": [
29
39
  "react",
30
40
  "prosemirror",
@@ -43,13 +53,5 @@
43
53
  "bugs": {
44
54
  "url": "https://github.com/domternal/domternal/issues"
45
55
  },
46
- "homepage": "https://domternal.dev",
47
- "scripts": {
48
- "build": "tsup",
49
- "dev": "tsup --watch",
50
- "lint": "eslint src",
51
- "typecheck": "tsc --noEmit",
52
- "test": "vitest run",
53
- "test:watch": "vitest"
54
- }
55
- }
56
+ "homepage": "https://domternal.dev"
57
+ }