@equinor/fusion-framework-cli 5.1.0 → 5.1.1

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
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [5.1.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@5.1.0...@equinor/fusion-framework-cli@5.1.1) (2023-03-20)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **cli:** add missing proxy target ([1f14f99](https://github.com/equinor/fusion-framework/commit/1f14f99290d6ee3c112115f29b9f28d1a6959b62))
11
+
6
12
  ## [5.1.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@5.0.8...@equinor/fusion-framework-cli@5.1.0) (2023-03-20)
7
13
 
8
14
  ### Features
package/bin/main.js CHANGED
@@ -30,11 +30,9 @@ app.command('dev')
30
30
  const spinner = ora('Loading configuration').start();
31
31
  const viteConfig = mergeConfig(yield createConfig(), { server: { port } });
32
32
  const appConfig = yield resolveAppConfig();
33
- if (portal) {
34
- appConfig.portalHost = portal
35
- ? portal
36
- : (_a = process.env.FUSION_PORTAL_HOST) !== null && _a !== void 0 ? _a : 'https://fusion-s-portal-ci.azurewebsites.net';
37
- }
33
+ appConfig.portalHost = portal
34
+ ? portal
35
+ : (_a = process.env.FUSION_PORTAL_HOST) !== null && _a !== void 0 ? _a : 'https://fusion-s-portal-ci.azurewebsites.net';
38
36
  spinner.succeed('Configuration loaded');
39
37
  startDevServer({ viteConfig, appConfig });
40
38
  }));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equinor/fusion-framework-cli",
3
- "version": "5.1.0",
3
+ "version": "5.1.1",
4
4
  "keywords": [
5
5
  "Fusion",
6
6
  "Fusion Framework",
@@ -56,5 +56,5 @@
56
56
  "typescript": "^4.9.3",
57
57
  "vite-plugin-environment": "^1.1.3"
58
58
  },
59
- "gitHead": "4bb6a70e2acb5c22a9a953da23c98565b8ef28d2"
59
+ "gitHead": "b634513ea0d5b4876b1f00623b9a83df574bb0fc"
60
60
  }