@domternal/vue 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
@@ -22,6 +22,9 @@ pnpm add @domternal/vue @domternal/core @domternal/theme vue
22
22
  `vue` (>=3.3) and `@domternal/core` (>=1.1.0 <2.0.0) are peer dependencies. `@domternal/theme`
23
23
  supplies the editor styles.
24
24
 
25
+ This package is part of the coordinated Domternal 1.1.1 release.
26
+ Upgrade installed `@domternal/*` packages together.
27
+
25
28
  ## Usage
26
29
 
27
30
  Composable component pattern (recommended): `Domternal` creates the editor and provides it to all
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@domternal/vue",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "MIT-licensed Vue 3 components for the Domternal rich text editor",
5
5
  "author": "https://github.com/ThomasNowHere",
6
6
  "license": "MIT",
@@ -24,6 +24,16 @@
24
24
  "@domternal/core": ">=1.1.0 <2.0.0",
25
25
  "vue": ">=3.3"
26
26
  },
27
+ "scripts": {
28
+ "build": "tsup",
29
+ "dev": "tsup --watch",
30
+ "lint": "eslint src",
31
+ "typecheck": "tsc --noEmit",
32
+ "prepublishOnly": "pnpm build && node ../../scripts/prepare-publish-manifest.mjs",
33
+ "postpublish": "git checkout package.json",
34
+ "test": "vitest run",
35
+ "test:watch": "vitest"
36
+ },
27
37
  "keywords": [
28
38
  "vue",
29
39
  "vue3",
@@ -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
+ }