@equinor/fusion-framework-cli 0.3.3 → 0.3.5

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,16 @@
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
+ ## 0.3.5 (2022-11-23)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **cli:** relative path resolve windows ([0316c30](https://github.com/equinor/fusion-framework/commit/0316c30fd0e75d230893015c40c96dd369e8e472))
11
+
12
+ ## [0.3.4](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@0.3.3...@equinor/fusion-framework-cli@0.3.4) (2022-11-20)
13
+
14
+ **Note:** Version bump only for package @equinor/fusion-framework-cli
15
+
6
16
  ## [0.3.3](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@0.3.2...@equinor/fusion-framework-cli@0.3.3) (2022-11-18)
7
17
 
8
18
  **Note:** Version bump only for package @equinor/fusion-framework-cli
package/bin/serve.js CHANGED
@@ -12,11 +12,10 @@ import { readFileSync } from 'fs';
12
12
  import express from 'express';
13
13
  import dns from 'dns';
14
14
  dns.setDefaultResultOrder('verbatim');
15
- import path from 'path';
16
15
  import kleur from 'kleur';
17
16
  import ora from 'ora';
18
17
  import { createProxyMiddleware, responseInterceptor } from 'http-proxy-middleware';
19
- const resolveRelativePath = (relative) => path.resolve(new URL(relative, import.meta.url).pathname);
18
+ const resolveRelativePath = (path) => String(new URL(path, import.meta.url));
20
19
  export const server = (config) => __awaiter(void 0, void 0, void 0, function* () {
21
20
  var _a, _b;
22
21
  const { manifest: appManifest } = config.appConfig;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equinor/fusion-framework-cli",
3
- "version": "0.3.3",
3
+ "version": "0.3.5",
4
4
  "keywords": [
5
5
  "Fusion",
6
6
  "Fusion Framework",
@@ -24,7 +24,7 @@
24
24
  "prepack": "yarn build"
25
25
  },
26
26
  "dependencies": {
27
- "@equinor/fusion-observable": "^1.4.1",
27
+ "@equinor/fusion-observable": "^1.5.0",
28
28
  "@vitejs/plugin-react": "^2.2.0",
29
29
  "commander": "^9.4.1",
30
30
  "express": "^4.18.2",
@@ -35,7 +35,7 @@
35
35
  "vite": "^3.2.0"
36
36
  },
37
37
  "devDependencies": {
38
- "@equinor/fusion-framework-react": "^1.3.17",
38
+ "@equinor/fusion-framework-react": "^1.3.18",
39
39
  "@equinor/fusion-react-progress-indicator": "^0.1.5",
40
40
  "@equinor/fusion-react-styles": "^0.5.5",
41
41
  "@types/express": "^4.17.14",
@@ -46,5 +46,5 @@
46
46
  "react-router-dom": "^6.4.3",
47
47
  "typescript": "^4.8.4"
48
48
  },
49
- "gitHead": "08348a63143c1fc0d62fd75e81271ffc2cab9be4"
49
+ "gitHead": "e924bf2b8a7ce68a6d9e5035c008a97b28b9bf88"
50
50
  }