@equinor/fusion-framework-cli 0.3.4 → 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 +6 -0
- package/bin/serve.js +1 -2
- package/package.json +2 -2
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
|
+
## 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
|
+
|
|
6
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)
|
|
7
13
|
|
|
8
14
|
**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 = (
|
|
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
|
+
"version": "0.3.5",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"Fusion",
|
|
6
6
|
"Fusion Framework",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"react-router-dom": "^6.4.3",
|
|
47
47
|
"typescript": "^4.8.4"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "e924bf2b8a7ce68a6d9e5035c008a97b28b9bf88"
|
|
50
50
|
}
|