@equinor/fusion-framework-cli 11.0.0-next.7 → 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 +8 -0
- package/bin/build/bin.js +13 -6
- package/bin/build/cli.js +12 -10
- package/bin/build/create-auth-client-B_j4Y_Dr.js +1415 -0
- package/bin/build/portal-config-publish-ezU_DFki.js +29578 -0
- package/dist/esm/version.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +18 -16
- package/bin/build/create-auth-client-7P8K_6Vu.js +0 -89
- package/bin/build/portal-config-publish-OZ7Ocme4.js +0 -12281
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
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
|
+
|
|
3
11
|
## 11.0.0-next.7
|
|
4
12
|
|
|
5
13
|
### Patch 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-
|
|
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 '
|
|
17
|
-
import '
|
|
18
|
-
import '
|
|
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 '
|
|
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 '
|
|
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 loadPortalSchema, w as writeFile$1, c as buildPortal, d as bundlePortal, f as publishPortalConfig, e as generatePortalConfig } from './portal-config-publish-OZ7Ocme4.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 '
|
|
20
|
-
import '
|
|
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 '
|
|
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.
|
|
@@ -181,10 +187,6 @@ const command$p = createCommand('build')
|
|
|
181
187
|
await buildApplication({ log, manifest });
|
|
182
188
|
});
|
|
183
189
|
|
|
184
|
-
function getDefaultExportFromCjs (x) {
|
|
185
|
-
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
|
|
186
|
-
}
|
|
187
|
-
|
|
188
190
|
const DEFAULT_ARCHIVE = 'app-bundle.zip';
|
|
189
191
|
/**
|
|
190
192
|
* CLI command: `pack`
|