@tryghost/portal 2.69.12 → 2.69.13
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 -4
- package/package.json +2 -4
- package/umd/portal.min.js +2 -2
- package/umd/portal.min.js.map +1 -1
package/README.md
CHANGED
|
@@ -49,10 +49,7 @@ Portal runs automatically when using Ghost's development command from the monore
|
|
|
49
49
|
pnpm dev
|
|
50
50
|
```
|
|
51
51
|
|
|
52
|
-
This starts all frontend apps (including Portal.)
|
|
53
|
-
---
|
|
54
|
-
|
|
55
|
-
To run Portal in a standalone fashion, use `pnpm preview` and open [http://localhost:3000](http://localhost:3000).
|
|
52
|
+
This starts all frontend apps (including Portal.) Portal is served via the dev gateway at `http://localhost:2368/ghost/assets/portal/portal.min.js` and is loaded into theme pages on the dev site.
|
|
56
53
|
|
|
57
54
|
## Build
|
|
58
55
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tryghost/portal",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.69.
|
|
4
|
+
"version": "2.69.13",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -66,10 +66,8 @@
|
|
|
66
66
|
]
|
|
67
67
|
},
|
|
68
68
|
"scripts": {
|
|
69
|
-
"dev": "
|
|
69
|
+
"dev": "vite build --watch --mode development",
|
|
70
70
|
"build": "vite build",
|
|
71
|
-
"build:watch": "vite build --watch --mode development",
|
|
72
|
-
"preview": "vite preview",
|
|
73
71
|
"test": "vitest run",
|
|
74
72
|
"test:watch": "vitest",
|
|
75
73
|
"test:ci": "pnpm test --coverage",
|