@equinor/fusion-framework-cli 15.1.8 → 15.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 +18 -0
- package/bin/build/bin.mjs +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/types/bin/app-manifest.d.ts +1 -1
- package/dist/types/bin/app-pack.d.ts +1 -1
- package/dist/types/bin/portal-build.d.ts +5 -5
- package/dist/types/bin/portal-manifest.d.ts +5 -5
- package/dist/types/bin/portal-pack.d.ts +5 -5
- package/dist/types/cli/commands/app/pack.d.ts +1 -1
- package/dist/types/cli/commands/index.d.ts +2 -2
- package/dist/types/lib/app/app-package.d.ts +1 -1
- package/dist/types/lib/legacy.d.ts +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 15.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 98d8f08: Automatically include markdown plugin in app builds and manifest loading.
|
|
8
|
+
|
|
9
|
+
The CLI now automatically includes the `@equinor/fusion-framework-vite-plugin-markdown` plugin in all app builds, enabling support for markdown file imports with `?raw` query parameter without requiring manual configuration. The plugin is also included during app manifest loading to handle markdown imports in route definitions.
|
|
10
|
+
|
|
11
|
+
Apps can now import markdown files directly:
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import readmeContent from "./README.md?raw";
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- @equinor/fusion-framework-dev-portal@8.0.0
|
|
20
|
+
|
|
3
21
|
## 15.1.8
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|