@domternal/vanilla 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 +11 -9
package/README.md CHANGED
@@ -25,6 +25,9 @@ pnpm add @domternal/core @domternal/theme @domternal/vanilla
25
25
  `@domternal/core` (>=1.1.0 <2.0.0) is a peer dependency. `@domternal/theme` supplies the editor
26
26
  styles (import it once in your app).
27
27
 
28
+ This package is part of the coordinated Domternal 1.1.1 release.
29
+ Upgrade installed `@domternal/*` packages together.
30
+
28
31
  ## Usage
29
32
 
30
33
  ```ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@domternal/vanilla",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "MIT-licensed framework-free DOM components for the Domternal rich text editor",
5
5
  "author": "https://github.com/ThomasNowHere",
6
6
  "license": "MIT",
@@ -23,6 +23,14 @@
23
23
  "peerDependencies": {
24
24
  "@domternal/core": ">=1.1.0 <2.0.0"
25
25
  },
26
+ "scripts": {
27
+ "build": "tsup",
28
+ "dev": "tsup --watch",
29
+ "lint": "eslint src",
30
+ "typecheck": "tsc --noEmit",
31
+ "prepublishOnly": "pnpm build && node ../../scripts/prepare-publish-manifest.mjs",
32
+ "postpublish": "git checkout package.json"
33
+ },
26
34
  "keywords": [
27
35
  "vanilla",
28
36
  "dom",
@@ -45,11 +53,5 @@
45
53
  "bugs": {
46
54
  "url": "https://github.com/domternal/domternal/issues"
47
55
  },
48
- "homepage": "https://domternal.dev",
49
- "scripts": {
50
- "build": "tsup",
51
- "dev": "tsup --watch",
52
- "lint": "eslint src",
53
- "typecheck": "tsc --noEmit"
54
- }
55
- }
56
+ "homepage": "https://domternal.dev"
57
+ }