@juit/vue-tiny-editor 0.0.1 → 0.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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +2 -4
package/README.md CHANGED
@@ -4,5 +4,7 @@ Juit Tiny Editor (for mentions!)
4
4
  A simple Vue component providing an editable text area supporting bold, italic,
5
5
  links and mentions.
6
6
 
7
+ Look here for a simple [demo](https://juitnow.github.io/juit-vue-tiny-editor/).
8
+
7
9
  * [Copyright Notice](NOTICE.md)
8
10
  * [License](LICENSE.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juit/vue-tiny-editor",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -11,10 +11,8 @@
11
11
  },
12
12
  "scripts": {
13
13
  "build": "npm run check && vite build",
14
- "build-demo": "npm run check && vite build --mode=demo",
14
+ "build-demo": "npm run check && vite build -c vite.config.demo.ts",
15
15
  "check": "vue-tsc --build --force && vitest run --coverage && eslint",
16
- "deploy-dev": "wrangler deploy",
17
- "deploy-prod": "wrangler deploy --env=production",
18
16
  "dev": "vite",
19
17
  "test": "vitest"
20
18
  },