@equinor/fusion-framework-cli 5.1.0 → 5.1.2
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/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
|
-
|
|
34
|
-
|
|
35
|
-
|
|
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.
|
|
3
|
+
"version": "5.1.2",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"Fusion",
|
|
6
6
|
"Fusion Framework",
|
|
@@ -26,35 +26,35 @@
|
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@equinor/fusion-framework-app": "^6.0.8",
|
|
28
28
|
"@equinor/fusion-observable": "^7.0.2",
|
|
29
|
-
"@vitejs/plugin-react": "^3.
|
|
29
|
+
"@vitejs/plugin-react": "^3.1.0",
|
|
30
30
|
"commander": "^10.0.0",
|
|
31
31
|
"express": "^4.18.2",
|
|
32
32
|
"find-up": "^6.3.0",
|
|
33
33
|
"http-proxy-middleware": "^2.0.6",
|
|
34
34
|
"kleur": "^4.1.5",
|
|
35
|
-
"ora": "^6.
|
|
36
|
-
"vite": "^4.
|
|
37
|
-
"vite-tsconfig-paths": "^4.0.
|
|
35
|
+
"ora": "^6.2.0",
|
|
36
|
+
"vite": "^4.2.1",
|
|
37
|
+
"vite-tsconfig-paths": "^4.0.7"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@equinor/fusion-framework-module-context": "^2.0.8",
|
|
41
41
|
"@equinor/fusion-framework-react": "^4.0.5",
|
|
42
42
|
"@equinor/fusion-query": "^2.0.6",
|
|
43
|
-
"@equinor/fusion-react-button": "^0.
|
|
44
|
-
"@equinor/fusion-react-context-selector": "^0.
|
|
43
|
+
"@equinor/fusion-react-button": "^0.8.1",
|
|
44
|
+
"@equinor/fusion-react-context-selector": "^0.4.2",
|
|
45
45
|
"@equinor/fusion-react-icon": "^0.2.15",
|
|
46
46
|
"@equinor/fusion-react-menu": "^0.1.5",
|
|
47
|
-
"@equinor/fusion-react-person": "^0.1.
|
|
47
|
+
"@equinor/fusion-react-person": "^0.1.3",
|
|
48
48
|
"@equinor/fusion-react-progress-indicator": "^0.1.6",
|
|
49
49
|
"@equinor/fusion-react-styles": "^0.5.5",
|
|
50
|
-
"@types/express": "^4.17.
|
|
51
|
-
"@types/react": "^18.0.
|
|
52
|
-
"@types/react-dom": "^18.0.
|
|
50
|
+
"@types/express": "^4.17.17",
|
|
51
|
+
"@types/react": "^18.0.28",
|
|
52
|
+
"@types/react-dom": "^18.0.11",
|
|
53
53
|
"react": "^18.2.0",
|
|
54
54
|
"react-dom": "^18.2.0",
|
|
55
|
-
"react-router-dom": "^6.
|
|
55
|
+
"react-router-dom": "^6.9.0",
|
|
56
56
|
"typescript": "^4.9.3",
|
|
57
57
|
"vite-plugin-environment": "^1.1.3"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "3b55a2fd85d9b4c1c8d5258f88cf926db00aea21"
|
|
60
60
|
}
|