@equinor/fusion-framework-cli 7.0.9 → 7.0.12-next.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 CHANGED
@@ -1,8 +1,35 @@
1
1
  # Change Log
2
2
 
3
+ ## 7.0.12-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies []:
8
+ - @equinor/fusion-framework-app@7.0.16-next.0
9
+
10
+ ## 7.0.11
11
+
12
+ ### Patch Changes
13
+
14
+ - [#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
15
+ both `"main": "src/index.ts"` and `"main": "/src/index.ts"` will resolve.
16
+
17
+ - [#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**
18
+
19
+ - align all versions of typescript
20
+ - update types to build
21
+ - 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
22
+
23
+ - Updated dependencies [[`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c)]:
24
+ - @equinor/fusion-framework-app@7.0.15
25
+
3
26
  All notable changes to this project will be documented in this file.
4
27
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
28
 
29
+ ## [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)
30
+
31
+ **Note:** Version bump only for package @equinor/fusion-framework-cli
32
+
6
33
  ## [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
34
 
8
35
  **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);