@equinor/fusion-framework-cli 7.0.9 → 7.0.11
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 +20 -0
- package/bin/app-config.js +1 -1
- package/bin/dev-portal/assets/index-da637d57.js +2880 -0
- package/bin/dev-portal/index.html +1 -1
- package/bin/main.js +0 -0
- package/package.json +9 -10
- package/LICENSE +0 -21
- package/bin/dev-portal/assets/index-eff0f58a.js +0 -3014
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,28 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 7.0.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#910](https://github.com/equinor/fusion-framework/pull/910) [`d40951a3`](https://github.com/equinor/fusion-framework/commit/d40951a3f5044083e7aec416c065342d0207e5d5) Thanks [@asbjornhaland](https://github.com/asbjornhaland)! - Removes requirement of leading slash in `main` attr in `package.json`, meaning
|
|
8
|
+
both `"main": "src/index.ts"` and `"main": "/src/index.ts"` will resolve.
|
|
9
|
+
|
|
10
|
+
- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages**
|
|
11
|
+
|
|
12
|
+
- align all versions of typescript
|
|
13
|
+
- update types to build
|
|
14
|
+
- a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [[`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c)]:
|
|
17
|
+
- @equinor/fusion-framework-app@7.0.15
|
|
18
|
+
|
|
3
19
|
All notable changes to this project will be documented in this file.
|
|
4
20
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
21
|
|
|
22
|
+
## [7.0.10](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@7.0.9...@equinor/fusion-framework-cli@7.0.10) (2023-05-24)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @equinor/fusion-framework-cli
|
|
25
|
+
|
|
6
26
|
## [7.0.9](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@7.0.8...@equinor/fusion-framework-cli@7.0.9) (2023-05-23)
|
|
7
27
|
|
|
8
28
|
**Note:** Version bump only for package @equinor/fusion-framework-cli
|
package/bin/app-config.js
CHANGED
|
@@ -64,7 +64,7 @@ export const resolveAppConfig = () => __awaiter(void 0, void 0, void 0, function
|
|
|
64
64
|
}, appConfig.manifest, {
|
|
65
65
|
version: pkg.version,
|
|
66
66
|
name: pkg.name,
|
|
67
|
-
main: pkg.main
|
|
67
|
+
main: pkg.main.startsWith('/') ? pkg.main : `/${pkg.main}`,
|
|
68
68
|
__DEV__: { root, configSource: appConfig.configSource, portal: appConfig.portalHost },
|
|
69
69
|
});
|
|
70
70
|
validateConfig(manifest);
|