@equinor/fusion-framework-cli 14.1.1 → 14.2.3
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/CHANGELOG.md +45 -0
- package/bin/build/bin.mjs +1 -1
- package/bin/build/cli.mjs +3 -3
- package/dist/esm/version.js +1 -1
- package/dist/types/bin/index.d.ts +1 -0
- package/dist/types/bin/portal-serve.d.ts +48 -0
- package/dist/types/cli/commands/portal/serve.d.ts +33 -0
- package/dist/types/version.d.ts +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,50 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 14.2.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- b2ee9f1: Internal: republish `@equinor/fusion-framework-cli` after a failed CI publish; no consumer-facing changes are included in this release.
|
|
8
|
+
|
|
9
|
+
## 14.2.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 53b725f: Add `/@fusion-api/apps` as a direct service worker resource so auth tokens are injected for app bundle chunk requests in portal mode.
|
|
14
|
+
|
|
15
|
+
Previously, only `/apps-proxy` was registered. When the browser resolved relative chunk imports (e.g. `lib-*.js`) against the rewritten `/@fusion-api/apps/` origin, the service worker did not match the URL and the request was sent without an Authorization header, resulting in 401 errors.
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [53b725f]
|
|
18
|
+
- @equinor/fusion-framework-dev-portal@5.1.4
|
|
19
|
+
|
|
20
|
+
## 14.2.1
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- 5823e72: Add missing empty `endpoints` field in default fallback for app config
|
|
25
|
+
- @equinor/fusion-framework-dev-portal@5.1.3
|
|
26
|
+
|
|
27
|
+
## 14.2.0
|
|
28
|
+
|
|
29
|
+
### Minor Changes
|
|
30
|
+
|
|
31
|
+
- 8c5d77a: Add `portal serve` command for serving built portal templates in a production-like preview environment.
|
|
32
|
+
|
|
33
|
+
The new command starts a dev server that serves pre-built portal files, automatically detecting the build output directory from Vite configuration.
|
|
34
|
+
|
|
35
|
+
```sh
|
|
36
|
+
ffc portal serve
|
|
37
|
+
ffc portal serve --port 5000 --host 0.0.0.0
|
|
38
|
+
ffc portal serve --dir ./dist
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Options include `--port`, `--host`, `--dir`, `--manifest`, `--config`, and `--debug`.
|
|
42
|
+
|
|
43
|
+
### Patch Changes
|
|
44
|
+
|
|
45
|
+
- Updated dependencies [b733f91]
|
|
46
|
+
- @equinor/fusion-framework-dev-portal@5.1.2
|
|
47
|
+
|
|
3
48
|
## 14.1.1
|
|
4
49
|
|
|
5
50
|
### Patch Changes
|