@tryghost/koenig-lexical 0.0.7 → 0.0.9
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.
- package/README.md +1 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ To test/develop inside of Admin you can run `yarn preview` then in Ghost set you
|
|
|
17
17
|
}
|
|
18
18
|
```
|
|
19
19
|
|
|
20
|
-
`yarn preview` by itself only serves the library files, it's possible ro run `yarn
|
|
20
|
+
`yarn preview` by itself only serves the library files, it's possible ro run `yarn build --watch` in a separate terminal tab to have auto-rebuild whilst developing.
|
|
21
21
|
|
|
22
22
|
### Project structure
|
|
23
23
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tryghost/koenig-lexical",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"repository": "https://github.com/TryGhost/Koenig/tree/master/packages/koenig-lexical",
|
|
5
5
|
"author": "Ghost Foundation",
|
|
6
6
|
"license": "MIT",
|
|
@@ -25,7 +25,8 @@
|
|
|
25
25
|
"lint": "eslint src --ext .js,.jsx --cache",
|
|
26
26
|
"prepare": "NODE_ENV=production yarn build",
|
|
27
27
|
"pretest": "yarn build",
|
|
28
|
-
"posttest": "yarn lint"
|
|
28
|
+
"posttest": "yarn lint",
|
|
29
|
+
"build:demo": "vite build --config vite.config.demo.js"
|
|
29
30
|
},
|
|
30
31
|
"dependencies": {
|
|
31
32
|
"@lexical/react": "^0.4.1",
|
|
@@ -45,5 +46,5 @@
|
|
|
45
46
|
"vite": "3.0.8",
|
|
46
47
|
"vite-plugin-svgr": "2.2.1"
|
|
47
48
|
},
|
|
48
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "a18b96c37b0f0d7784c61537461d610225a99e02"
|
|
49
50
|
}
|