@equinor/fusion-framework-cli 14.1.0 → 14.2.0
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 +43 -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 +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 14.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 8c5d77a: Add `portal serve` command for serving built portal templates in a production-like preview environment.
|
|
8
|
+
|
|
9
|
+
The new command starts a dev server that serves pre-built portal files, automatically detecting the build output directory from Vite configuration.
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
ffc portal serve
|
|
13
|
+
ffc portal serve --port 5000 --host 0.0.0.0
|
|
14
|
+
ffc portal serve --dir ./dist
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Options include `--port`, `--host`, `--dir`, `--manifest`, `--config`, and `--debug`.
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [b733f91]
|
|
22
|
+
- @equinor/fusion-framework-dev-portal@5.1.2
|
|
23
|
+
|
|
24
|
+
## 14.1.1
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- 8f16c97: Update rollup (4.59.0 → 4.60.1) used to produce the published bundles for both packages.
|
|
29
|
+
|
|
30
|
+
rollup 4.60.1 fixes a bug where side-effect imports could be silently dropped during bundling due to a namespace re-export caching issue ([rollup#6274](https://github.com/rollup/rollup/issues/6274)). Both packages use rollup to bundle their published output, so the fix ensures the emitted artifacts are correct.
|
|
31
|
+
|
|
32
|
+
No API or behaviour changes for consumers.
|
|
33
|
+
|
|
34
|
+
- fe63b78: Internal: update bundled ajv (8.17.1 → 8.18.0) in the CLI.
|
|
35
|
+
|
|
36
|
+
ajv 8.18.0 includes a security fix for CVE-2025-69873 — a ReDoS vulnerability in the `$data` keyword's `pattern` validation. The CLI bundles ajv for portal schema validation, so this patch updates the bundled copy.
|
|
37
|
+
|
|
38
|
+
No CLI API or behaviour changes for consumers.
|
|
39
|
+
|
|
40
|
+
- Updated dependencies [6872aad]
|
|
41
|
+
- Updated dependencies [5c836fb]
|
|
42
|
+
- @equinor/fusion-framework-module-msal-node@4.0.1
|
|
43
|
+
- @equinor/fusion-framework-dev-server@2.0.1
|
|
44
|
+
- @equinor/fusion-framework-dev-portal@5.1.1
|
|
45
|
+
|
|
3
46
|
## 14.1.0
|
|
4
47
|
|
|
5
48
|
### Minor Changes
|