@equinor/fusion-framework-cli 11.0.0-next.6 → 11.0.0-next.8

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
@@ -1,5 +1,21 @@
1
1
  # Change Log
2
2
 
3
+ ## 11.0.0-next.8
4
+
5
+ ### Patch Changes
6
+
7
+ - [#3075](https://github.com/equinor/fusion-framework/pull/3075) [`5e7d06c`](https://github.com/equinor/fusion-framework/commit/5e7d06c412997e3162971212c9ee61cade636543) Thanks [@odinr](https://github.com/odinr)! - - Update dependencies and devDependencies in `package.json`.
8
+ - Adjusted `exports` field for additional subpaths.
9
+ - No user-facing changes.
10
+
11
+ ## 11.0.0-next.7
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies []:
16
+ - @equinor/fusion-framework-dev-portal@1.0.0-next.2
17
+ - @equinor/fusion-framework-dev-server@1.0.0-next.4
18
+
3
19
  ## 11.0.0-next.6
4
20
 
5
21
  ### Minor Changes
package/bin/build/bin.js CHANGED
@@ -1,8 +1,7 @@
1
- export { b as buildApplication, c as buildPortal, a as bundleApp, d as bundlePortal, g as generateApplicationConfig, e as generatePortalConfig, l as loadPortalManifest, h as pack, p as publishAppConfig, f as publishPortalConfig, s as startAppDevServer } from './portal-config-publish-CqqdoblS.js';
1
+ export { b as buildApplication, c as buildPortal, a as bundleApp, d as bundlePortal, g as generateApplicationConfig, e as generatePortalConfig, l as loadPortalManifest, h as pack, p as publishAppConfig, f as publishPortalConfig, s as startAppDevServer } from './portal-config-publish-ezU_DFki.js';
2
2
  import 'vite';
3
3
  import 'chalk';
4
4
  import '@equinor/fusion-imports';
5
- import 'lodash.mergewith';
6
5
  import '@equinor/fusion-framework-dev-server';
7
6
  import 'node:fs';
8
7
  import 'node:fs/promises';
@@ -13,9 +12,17 @@ import 'node:assert';
13
12
  import 'node:child_process';
14
13
  import 'zod';
15
14
  import 'adm-zip';
16
- import 'pretty-bytes';
17
- import '@azure/msal-node';
18
- import 'open';
15
+ import 'http';
16
+ import 'https';
17
+ import 'crypto';
18
+ import 'buffer';
19
+ import 'stream';
20
+ import 'util';
21
+ import 'fs';
22
+ import 'path';
19
23
  import 'node:http';
20
- import 'is-ci';
24
+ import 'node:process';
25
+ import 'node:buffer';
26
+ import 'node:util';
27
+ import 'node:os';
21
28
  import 'ora';
package/bin/build/cli.js CHANGED
@@ -4,10 +4,8 @@ import { readPackageUpSync } from 'read-package-up';
4
4
  import { createCommand, createOption, InvalidOptionArgumentError, Command } from 'commander';
5
5
  import 'node:fs';
6
6
  import chalk from 'chalk';
7
- import 'pretty-bytes';
8
- import { S as Spinner, b as buildApplication, a as bundleApp, F as FusionEnv, r as resolveDefaultEnv, i as resolveProjectPackage, j as resolveAppManifest, k as initializeFramework, p as publishAppConfig, g as generateApplicationConfig, m as formatPath, H as HttpJsonResponseError, n as loadAppManifest, s as startAppDevServer, o as fileExistsSync, N as NoAccountsError, q as resolvePortalManifest, t as resolvePortalConfig, u as createDevServer, l as loadPortalManifest, v as getDefaultExportFromCjs, w as loadPortalSchema, x as writeFile$1, c as buildPortal, d as bundlePortal, f as publishPortalConfig, e as generatePortalConfig } from './portal-config-publish-CqqdoblS.js';
7
+ import { S as Spinner, b as buildApplication, a as bundleApp, F as FusionEnv, r as resolveDefaultEnv, i as resolveProjectPackage, j as resolveAppManifest, k as initializeFramework, p as publishAppConfig, g as generateApplicationConfig, m as formatPath, H as HttpJsonResponseError, n as loadAppManifest, s as startAppDevServer, o as fileExistsSync, N as NoAccountsError, q as resolvePortalManifest, t as resolvePortalConfig, u as createDevServer, l as loadPortalManifest, v as getDefaultExportFromCjs, w as loadPortalSchema, x as writeFile$1, c as buildPortal, d as bundlePortal, f as publishPortalConfig, e as generatePortalConfig } from './portal-config-publish-ezU_DFki.js';
9
8
  import { importJSON } from '@equinor/fusion-imports';
10
- import 'lodash.mergewith';
11
9
  import '@equinor/fusion-framework-dev-server';
12
10
  import 'vite';
13
11
  import { mkdir, writeFile } from 'node:fs/promises';
@@ -16,10 +14,18 @@ import 'node:child_process';
16
14
  import 'zod';
17
15
  import AdmZip from 'adm-zip';
18
16
  import { stdout } from 'node:process';
19
- import '@azure/msal-node';
20
- import 'open';
17
+ import 'http';
18
+ import 'https';
19
+ import 'crypto';
20
+ import 'buffer';
21
+ import 'stream';
22
+ import 'util';
23
+ import 'fs';
24
+ import 'path';
21
25
  import 'node:http';
22
- import 'is-ci';
26
+ import 'node:buffer';
27
+ import 'node:util';
28
+ import 'node:os';
23
29
  import 'ora';
24
30
 
25
31
  // ConsoleLogger provides a unified interface for logging and spinner-based feedback in CLI tools.