@equinor/fusion-framework-cli 0.3.5 → 0.3.7
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.7](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@0.3.6...@equinor/fusion-framework-cli@0.3.7) (2022-12-01)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @equinor/fusion-framework-cli
|
|
9
|
+
|
|
10
|
+
## [0.3.6](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-cli@0.3.5...@equinor/fusion-framework-cli@0.3.6) (2022-11-23)
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- **cli:** windows url path ([0176fa8](https://github.com/equinor/fusion-framework/commit/0176fa8ac1337025c584101ec2ceac8092eb0c13))
|
|
15
|
+
|
|
6
16
|
## 0.3.5 (2022-11-23)
|
|
7
17
|
|
|
8
18
|
### Bug Fixes
|
|
File without changes
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<meta charset="UTF-8" />
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
7
|
<title>Fusion Framework Dev Portal</title>
|
|
8
|
-
<script type="module" crossorigin src="/assets/index.
|
|
8
|
+
<script type="module" crossorigin src="/assets/index.7c07e1f8.js"></script>
|
|
9
9
|
|
|
10
10
|
<body>
|
|
11
11
|
<div id="root"></div>
|
package/bin/serve.js
CHANGED
|
@@ -9,13 +9,14 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
9
9
|
};
|
|
10
10
|
import { createServer } from 'vite';
|
|
11
11
|
import { readFileSync } from 'fs';
|
|
12
|
+
import { fileURLToPath } from 'url';
|
|
12
13
|
import express from 'express';
|
|
13
14
|
import dns from 'dns';
|
|
14
15
|
dns.setDefaultResultOrder('verbatim');
|
|
15
16
|
import kleur from 'kleur';
|
|
16
17
|
import ora from 'ora';
|
|
17
18
|
import { createProxyMiddleware, responseInterceptor } from 'http-proxy-middleware';
|
|
18
|
-
const resolveRelativePath = (path) =>
|
|
19
|
+
const resolveRelativePath = (path) => fileURLToPath(new URL(path, import.meta.url));
|
|
19
20
|
export const server = (config) => __awaiter(void 0, void 0, void 0, function* () {
|
|
20
21
|
var _a, _b;
|
|
21
22
|
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.7",
|
|
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.5.
|
|
27
|
+
"@equinor/fusion-observable": "^1.5.1",
|
|
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.
|
|
38
|
+
"@equinor/fusion-framework-react": "^1.3.19",
|
|
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": "
|
|
49
|
+
"gitHead": "8771d3b889de73fff04309f106bd132bee668bab"
|
|
50
50
|
}
|