@equinor/fusion-framework-cli 15.1.8 → 15.2.1

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.
Files changed (254) hide show
  1. package/CHANGELOG.md +58 -0
  2. package/bin/build/bin.mjs +1 -1
  3. package/bin/build/cli.mjs +2 -2
  4. package/dist/esm/lib/app/{schemas.js → api-app-config-schema.js} +1 -1
  5. package/dist/esm/lib/app/api-app-config-schema.js.map +1 -0
  6. package/dist/esm/lib/app/{create-app-manifest.js → create-app-manifest-from-package.js} +10 -8
  7. package/dist/esm/lib/app/create-app-manifest-from-package.js.map +1 -0
  8. package/dist/esm/lib/app/{app-config.js → define-app-config.js} +1 -1
  9. package/dist/esm/lib/app/define-app-config.js.map +1 -0
  10. package/dist/esm/lib/app/{app-manifest.js → define-app-manifest.js} +1 -1
  11. package/dist/esm/lib/app/define-app-manifest.js.map +1 -0
  12. package/dist/esm/lib/app/define-app-package.js +11 -0
  13. package/dist/esm/lib/app/define-app-package.js.map +1 -0
  14. package/dist/esm/lib/app/index.js +5 -5
  15. package/dist/esm/lib/app/index.js.map +1 -1
  16. package/dist/esm/lib/app/load-app-config.js +1 -1
  17. package/dist/esm/lib/app/load-app-config.js.map +1 -1
  18. package/dist/esm/lib/app/load-app-manifest.js +1 -1
  19. package/dist/esm/lib/app/load-app-manifest.js.map +1 -1
  20. package/dist/esm/lib/app/merge-app-config.js +1 -0
  21. package/dist/esm/lib/app/merge-app-config.js.map +1 -1
  22. package/dist/esm/lib/app/{merge-app-manifest.js → merge-app-manifests.js} +2 -2
  23. package/dist/esm/lib/app/merge-app-manifests.js.map +1 -0
  24. package/dist/esm/lib/app/resolve-app-key.js +17 -0
  25. package/dist/esm/lib/app/resolve-app-key.js.map +1 -0
  26. package/dist/esm/lib/define-app-config.js +20 -0
  27. package/dist/esm/lib/define-app-config.js.map +1 -0
  28. package/dist/esm/lib/define-app-manifest.js +20 -0
  29. package/dist/esm/lib/define-app-manifest.js.map +1 -0
  30. package/dist/esm/lib/define-dev-server-config.js +7 -0
  31. package/dist/esm/lib/define-dev-server-config.js.map +1 -0
  32. package/dist/esm/lib/{fusion-cli-config.js → define-fusion-cli.js} +1 -1
  33. package/dist/esm/lib/define-fusion-cli.js.map +1 -0
  34. package/dist/esm/lib/dev-server.js +2 -1
  35. package/dist/esm/lib/dev-server.js.map +1 -1
  36. package/dist/esm/lib/index.js +7 -5
  37. package/dist/esm/lib/index.js.map +1 -1
  38. package/dist/esm/lib/load-dev-server-config.js +2 -7
  39. package/dist/esm/lib/load-dev-server-config.js.map +1 -1
  40. package/dist/esm/lib/merge-dev-server-config.js +4 -0
  41. package/dist/esm/lib/merge-dev-server-config.js.map +1 -1
  42. package/dist/esm/lib/portal/{create-portal-manifest.js → create-portal-manifest-from-package.js} +11 -6
  43. package/dist/esm/lib/portal/create-portal-manifest-from-package.js.map +1 -0
  44. package/dist/esm/lib/portal/{portal-config.js → define-portal-config.js} +1 -1
  45. package/dist/esm/lib/portal/define-portal-config.js.map +1 -0
  46. package/dist/esm/lib/portal/{portal-manifest.js → define-portal-manifest.js} +5 -17
  47. package/dist/esm/lib/portal/define-portal-manifest.js.map +1 -0
  48. package/dist/esm/lib/portal/define-portal-schema.js +8 -0
  49. package/dist/esm/lib/portal/define-portal-schema.js.map +1 -0
  50. package/dist/esm/lib/portal/index.js +4 -3
  51. package/dist/esm/lib/portal/index.js.map +1 -1
  52. package/dist/esm/lib/portal/load-portal-manifest.js +7 -2
  53. package/dist/esm/lib/portal/load-portal-manifest.js.map +1 -1
  54. package/dist/esm/lib/portal/load-portal-schema.js +0 -7
  55. package/dist/esm/lib/portal/load-portal-schema.js.map +1 -1
  56. package/dist/esm/lib/portal/{portal-manifest.schema.js → portal-manifest-build-schema.js} +5 -30
  57. package/dist/esm/lib/portal/portal-manifest-build-schema.js.map +1 -0
  58. package/dist/esm/lib/portal/portal-manifest-schema.js +31 -0
  59. package/dist/esm/lib/portal/portal-manifest-schema.js.map +1 -0
  60. package/dist/esm/lib/portal/validate-portal-manifest.js +15 -0
  61. package/dist/esm/lib/portal/validate-portal-manifest.js.map +1 -0
  62. package/dist/esm/lib/static.js +3 -1
  63. package/dist/esm/lib/static.js.map +1 -1
  64. package/dist/esm/lib/utils/assert-object.js +25 -0
  65. package/dist/esm/lib/utils/assert-object.js.map +1 -0
  66. package/dist/esm/lib/utils/assert.js +1 -135
  67. package/dist/esm/lib/utils/assert.js.map +1 -1
  68. package/dist/esm/lib/utils/{extension-filter.js → create-extension-filter-pattern.js} +6 -2
  69. package/dist/esm/lib/utils/create-extension-filter-pattern.js.map +1 -0
  70. package/dist/esm/lib/utils/fetch-latest-version.js +26 -0
  71. package/dist/esm/lib/utils/fetch-latest-version.js.map +1 -0
  72. package/dist/esm/lib/utils/fetch-package-info.js +65 -0
  73. package/dist/esm/lib/utils/fetch-package-info.js.map +1 -0
  74. package/dist/esm/lib/utils/file-exists-sync.js +29 -0
  75. package/dist/esm/lib/utils/file-exists-sync.js.map +1 -0
  76. package/dist/esm/lib/utils/file-exists.js +2 -27
  77. package/dist/esm/lib/utils/file-exists.js.map +1 -1
  78. package/dist/esm/lib/utils/{snapshot.js → generate-snapshot-version.js} +2 -1
  79. package/dist/esm/lib/utils/generate-snapshot-version.js.map +1 -0
  80. package/dist/esm/lib/utils/index.js +4 -3
  81. package/dist/esm/lib/utils/index.js.map +1 -1
  82. package/dist/esm/lib/utils/is-git-dir.js +1 -0
  83. package/dist/esm/lib/utils/is-git-dir.js.map +1 -1
  84. package/dist/esm/lib/utils/{parse-json-request.js → parse-json-from-request.js} +1 -1
  85. package/dist/esm/lib/utils/parse-json-from-request.js.map +1 -0
  86. package/dist/esm/lib/utils/resolve-annotations.js +3 -0
  87. package/dist/esm/lib/utils/resolve-annotations.js.map +1 -1
  88. package/dist/esm/lib/utils/resolve-devops-annotations.js +1 -0
  89. package/dist/esm/lib/utils/resolve-devops-annotations.js.map +1 -1
  90. package/dist/esm/lib/utils/{resolve-source-entry-point.js → resolve-entry-point.js} +3 -2
  91. package/dist/esm/lib/utils/resolve-entry-point.js.map +1 -0
  92. package/dist/esm/lib/utils/resolve-git-commit-sha.js +1 -1
  93. package/dist/esm/lib/utils/resolve-git-commit-sha.js.map +1 -1
  94. package/dist/esm/lib/utils/resolve-git-remote-url.js +1 -1
  95. package/dist/esm/lib/utils/resolve-git-remote-url.js.map +1 -1
  96. package/dist/esm/lib/utils/resolve-github-annotations.js +4 -0
  97. package/dist/esm/lib/utils/resolve-github-annotations.js.map +1 -1
  98. package/dist/esm/lib/utils/resolve-package.js +1 -0
  99. package/dist/esm/lib/utils/resolve-package.js.map +1 -1
  100. package/dist/esm/lib/utils/{resolve-package-repo.js → resolve-repo-from-package.js} +2 -1
  101. package/dist/esm/lib/utils/resolve-repo-from-package.js.map +1 -0
  102. package/dist/esm/lib/utils/safe-rm-sync.js +20 -0
  103. package/dist/esm/lib/utils/safe-rm-sync.js.map +1 -0
  104. package/dist/esm/lib/utils/{path-security.js → validate-safe-path.js} +3 -19
  105. package/dist/esm/lib/utils/validate-safe-path.js.map +1 -0
  106. package/dist/esm/version.js +1 -1
  107. package/dist/types/bin/{portal-build.d.ts → build-portal.d.ts} +6 -6
  108. package/dist/types/bin/{app-pack.d.ts → bundle-app.d.ts} +1 -1
  109. package/dist/types/bin/{app-check.d.ts → check-app.d.ts} +2 -1
  110. package/dist/types/bin/configure-framework.d.ts +58 -0
  111. package/dist/types/bin/fusion-env.d.ts +24 -0
  112. package/dist/types/bin/{portal-config.d.ts → generate-portal-config.d.ts} +1 -1
  113. package/dist/types/bin/helpers/ProjectTemplate.d.ts +7 -1
  114. package/dist/types/bin/helpers/ProjectTemplateRepository.d.ts +15 -0
  115. package/dist/types/bin/helpers/install-package-dependencies.d.ts +1 -0
  116. package/dist/types/bin/helpers/parse-templates-manifest.d.ts +20 -0
  117. package/dist/types/bin/helpers/resolve-app-from-artifact.d.ts +1 -1
  118. package/dist/types/bin/helpers/{project-templates.schema.d.ts → template.schemas.d.ts} +7 -26
  119. package/dist/types/bin/index.d.ts +23 -20
  120. package/dist/types/bin/initialize-framework.d.ts +39 -0
  121. package/dist/types/bin/{app-manifest.d.ts → load-app-manifest.d.ts} +1 -1
  122. package/dist/types/bin/{app-config-publish.d.ts → publish-app-config.d.ts} +2 -2
  123. package/dist/types/bin/{portal-config-publish.d.ts → publish-portal-config.d.ts} +2 -1
  124. package/dist/types/bin/resolve-default-env.d.ts +8 -0
  125. package/dist/types/bin/{portal-tag.d.ts → tag-portal.d.ts} +1 -1
  126. package/dist/types/bin/{app-upload.d.ts → upload-application.d.ts} +1 -1
  127. package/dist/types/bin/{portal-upload.d.ts → upload-portal-bundle.d.ts} +1 -1
  128. package/dist/types/bin/utils/ConsoleLogger.d.ts +1 -1
  129. package/dist/types/bin/utils/{spinner.d.ts → Spinner.d.ts} +8 -0
  130. package/dist/types/bin/utils/auth-error-docs.d.ts +7 -0
  131. package/dist/types/bin/utils/create-dev-server-config.d.ts +47 -0
  132. package/dist/types/bin/utils/create-dev-server.d.ts +2 -47
  133. package/dist/types/bin/utils/env-token-hint.d.ts +7 -0
  134. package/dist/types/bin/utils/format-auth-error.d.ts +0 -17
  135. package/dist/types/bin/utils/format-byte-size.d.ts +16 -0
  136. package/dist/types/bin/utils/format-path.d.ts +16 -0
  137. package/dist/types/bin/utils/format-token-acquisition-error.d.ts +17 -0
  138. package/dist/types/bin/utils/index.d.ts +9 -5
  139. package/dist/types/bin/utils/normalize-dev-server-config.d.ts +24 -0
  140. package/dist/types/cli/commands/app/default-archive.d.ts +4 -0
  141. package/dist/types/cli/commands/app/{pack.d.ts → pack.command.d.ts} +0 -1
  142. package/dist/types/cli/commands/create/_helpers/check-target-directory.d.ts +1 -0
  143. package/dist/types/cli/commands/index.d.ts +2 -2
  144. package/dist/types/cli/options/{env.d.ts → create-env-option.d.ts} +0 -5
  145. package/dist/types/cli/options/options.d.ts +20 -0
  146. package/dist/types/cli/options/{auth.d.ts → with-auth-options.d.ts} +0 -20
  147. package/dist/types/cli/plugins/load-plugins.d.ts +9 -0
  148. package/dist/types/lib/app/{app-config.d.ts → define-app-config.d.ts} +2 -2
  149. package/dist/types/lib/app/define-app-package.d.ts +26 -0
  150. package/dist/types/lib/app/index.d.ts +5 -5
  151. package/dist/types/lib/app/load-app-config.d.ts +2 -2
  152. package/dist/types/lib/app/load-app-manifest.d.ts +1 -1
  153. package/dist/types/lib/app/resolve-app-key.d.ts +11 -0
  154. package/dist/types/lib/define-app-config.d.ts +12 -0
  155. package/dist/types/lib/define-app-manifest.d.ts +12 -0
  156. package/dist/types/lib/define-dev-server-config.d.ts +21 -0
  157. package/dist/types/lib/dev-server.d.ts +2 -1
  158. package/dist/types/lib/index.d.ts +6 -4
  159. package/dist/types/lib/load-dev-server-config.d.ts +1 -20
  160. package/dist/types/lib/portal/{create-portal-manifest.d.ts → create-portal-manifest-from-package.d.ts} +1 -1
  161. package/dist/types/lib/portal/{portal-manifest.d.ts → define-portal-manifest.d.ts} +5 -13
  162. package/dist/types/lib/portal/define-portal-schema.d.ts +24 -0
  163. package/dist/types/lib/portal/index.d.ts +4 -3
  164. package/dist/types/lib/portal/load-portal-config.d.ts +1 -1
  165. package/dist/types/lib/portal/load-portal-manifest.d.ts +1 -1
  166. package/dist/types/lib/portal/load-portal-schema.d.ts +1 -23
  167. package/dist/types/lib/portal/portal-manifest-build-schema.d.ts +32 -0
  168. package/dist/types/lib/portal/{portal-manifest.schema.d.ts → portal-manifest-schema.d.ts} +0 -31
  169. package/dist/types/lib/portal/validate-portal-manifest.d.ts +11 -0
  170. package/dist/types/lib/static.d.ts +0 -9
  171. package/dist/types/lib/utils/assert-object.d.ts +20 -0
  172. package/dist/types/lib/utils/assert.d.ts +1 -100
  173. package/dist/types/lib/utils/fetch-latest-version.d.ts +20 -0
  174. package/dist/types/lib/utils/{package-info.d.ts → fetch-package-info.d.ts} +0 -45
  175. package/dist/types/lib/utils/file-exists-sync.d.ts +21 -0
  176. package/dist/types/lib/utils/file-exists.d.ts +0 -15
  177. package/dist/types/lib/utils/index.d.ts +4 -3
  178. package/dist/types/lib/utils/safe-rm-sync.d.ts +15 -0
  179. package/dist/types/lib/utils/{path-security.d.ts → validate-safe-path.d.ts} +0 -15
  180. package/dist/types/version.d.ts +1 -1
  181. package/package.json +12 -12
  182. package/dist/esm/lib/app/app-config.js.map +0 -1
  183. package/dist/esm/lib/app/app-manifest.js.map +0 -1
  184. package/dist/esm/lib/app/app-package.js +0 -92
  185. package/dist/esm/lib/app/app-package.js.map +0 -1
  186. package/dist/esm/lib/app/create-app-manifest.js.map +0 -1
  187. package/dist/esm/lib/app/merge-app-manifest.js.map +0 -1
  188. package/dist/esm/lib/app/schemas.js.map +0 -1
  189. package/dist/esm/lib/fusion-cli-config.js.map +0 -1
  190. package/dist/esm/lib/legacy.js +0 -38
  191. package/dist/esm/lib/legacy.js.map +0 -1
  192. package/dist/esm/lib/portal/create-portal-manifest.js.map +0 -1
  193. package/dist/esm/lib/portal/portal-config.js.map +0 -1
  194. package/dist/esm/lib/portal/portal-manifest.js.map +0 -1
  195. package/dist/esm/lib/portal/portal-manifest.schema.js.map +0 -1
  196. package/dist/esm/lib/utils/extension-filter.js.map +0 -1
  197. package/dist/esm/lib/utils/package-info.js +0 -135
  198. package/dist/esm/lib/utils/package-info.js.map +0 -1
  199. package/dist/esm/lib/utils/parse-json-request.js.map +0 -1
  200. package/dist/esm/lib/utils/path-security.js.map +0 -1
  201. package/dist/esm/lib/utils/resolve-package-repo.js.map +0 -1
  202. package/dist/esm/lib/utils/resolve-source-entry-point.js.map +0 -1
  203. package/dist/esm/lib/utils/snapshot.js.map +0 -1
  204. package/dist/types/bin/framework.node.d.ts +0 -123
  205. package/dist/types/bin/utils/format.d.ts +0 -35
  206. package/dist/types/cli/plugins/loader.d.ts +0 -2
  207. package/dist/types/lib/app/app-package.d.ts +0 -76
  208. package/dist/types/lib/legacy.d.ts +0 -24
  209. package/dist/types/bin/{app-build.d.ts → build-application.d.ts} +0 -0
  210. package/dist/types/bin/{portal-pack.d.ts → bundle-portal.d.ts} +5 -5
  211. package/dist/types/bin/{app-config.d.ts → generate-application-config.d.ts} +0 -0
  212. package/dist/types/bin/helpers/{load-bundle-metadata.d.ts → load-metadata.d.ts} +0 -0
  213. package/dist/types/bin/{portal-manifest.d.ts → load-portal-manifest.d.ts} +5 -5
  214. /package/dist/types/bin/{app-serve.d.ts → serve-application.d.ts} +0 -0
  215. /package/dist/types/bin/{portal-serve.d.ts → serve-portal.d.ts} +0 -0
  216. /package/dist/types/bin/{app-dev.d.ts → start-app-dev-server.d.ts} +0 -0
  217. /package/dist/types/bin/{portal-dev.d.ts → start-portal-dev-server.d.ts} +0 -0
  218. /package/dist/types/bin/{app-tag.d.ts → tag-application.d.ts} +0 -0
  219. /package/dist/types/bin/utils/{defaultHeaders.d.ts → default-headers.d.ts} +0 -0
  220. /package/dist/types/cli/commands/app/{build.d.ts → build.command.d.ts} +0 -0
  221. /package/dist/types/cli/commands/app/{check.d.ts → check.command.d.ts} +0 -0
  222. /package/dist/types/cli/commands/app/{config.d.ts → config.command.d.ts} +0 -0
  223. /package/dist/types/cli/commands/app/{dev.d.ts → dev.command.d.ts} +0 -0
  224. /package/dist/types/cli/commands/app/{manifest.d.ts → manifest.command.d.ts} +0 -0
  225. /package/dist/types/cli/commands/app/{publish.d.ts → publish.command.d.ts} +0 -0
  226. /package/dist/types/cli/commands/app/{serve.d.ts → serve.command.d.ts} +0 -0
  227. /package/dist/types/cli/commands/app/{tag.d.ts → tag.command.d.ts} +0 -0
  228. /package/dist/types/cli/commands/app/{upload.d.ts → upload.command.d.ts} +0 -0
  229. /package/dist/types/cli/commands/auth/{login.d.ts → login.command.d.ts} +0 -0
  230. /package/dist/types/cli/commands/auth/{logout.d.ts → logout.command.d.ts} +0 -0
  231. /package/dist/types/cli/commands/auth/{token.d.ts → token.command.d.ts} +0 -0
  232. /package/dist/types/cli/commands/create/_helpers/{resolve-workspace-dependencies.d.ts → resolve-package-json-workspace-dependencies.d.ts} +0 -0
  233. /package/dist/types/cli/commands/create/{app.d.ts → create-app-command.d.ts} +0 -0
  234. /package/dist/types/cli/commands/portal/{build.d.ts → build.command.d.ts} +0 -0
  235. /package/dist/types/cli/commands/portal/{config.d.ts → config.command.d.ts} +0 -0
  236. /package/dist/types/cli/commands/portal/{dev.d.ts → dev.command.d.ts} +0 -0
  237. /package/dist/types/cli/commands/portal/{manifest.d.ts → manifest.command.d.ts} +0 -0
  238. /package/dist/types/cli/commands/portal/{pack.d.ts → pack.command.d.ts} +0 -0
  239. /package/dist/types/cli/commands/portal/{publish.d.ts → publish.command.d.ts} +0 -0
  240. /package/dist/types/cli/commands/portal/{schema.d.ts → schema.command.d.ts} +0 -0
  241. /package/dist/types/cli/commands/portal/{serve.d.ts → serve.command.d.ts} +0 -0
  242. /package/dist/types/cli/commands/portal/{tag.d.ts → tag.command.d.ts} +0 -0
  243. /package/dist/types/cli/commands/portal/{upload.d.ts → upload.command.d.ts} +0 -0
  244. /package/dist/types/lib/app/{schemas.d.ts → api-app-config-schema.d.ts} +0 -0
  245. /package/dist/types/lib/app/{create-app-manifest.d.ts → create-app-manifest-from-package.d.ts} +0 -0
  246. /package/dist/types/lib/app/{app-manifest.d.ts → define-app-manifest.d.ts} +0 -0
  247. /package/dist/types/lib/app/{merge-app-manifest.d.ts → merge-app-manifests.d.ts} +0 -0
  248. /package/dist/types/lib/{fusion-cli-config.d.ts → define-fusion-cli.d.ts} +0 -0
  249. /package/dist/types/lib/portal/{portal-config.d.ts → define-portal-config.d.ts} +0 -0
  250. /package/dist/types/lib/utils/{extension-filter.d.ts → create-extension-filter-pattern.d.ts} +0 -0
  251. /package/dist/types/lib/utils/{snapshot.d.ts → generate-snapshot-version.d.ts} +0 -0
  252. /package/dist/types/lib/utils/{parse-json-request.d.ts → parse-json-from-request.d.ts} +0 -0
  253. /package/dist/types/lib/utils/{resolve-source-entry-point.d.ts → resolve-entry-point.d.ts} +0 -0
  254. /package/dist/types/lib/utils/{resolve-package-repo.d.ts → resolve-repo-from-package.d.ts} +0 -0
@@ -1,6 +1,6 @@
1
1
  import type { PackageJson } from 'type-fest';
2
2
  import type { RuntimeEnv } from '@equinor/fusion-framework-cli/lib';
3
- import type { PortalManifest } from './portal-manifest.js';
3
+ import type { PortalManifest } from './define-portal-manifest.js';
4
4
  /**
5
5
  * Creates a `PortalManifest` object from the provided `package.json` data and runtime environment.
6
6
  *
@@ -1,7 +1,7 @@
1
1
  import type { PortalManifestFn } from './load-portal-manifest.js';
2
- import type { PortalManifestSchemaType } from './portal-manifest.schema.js';
2
+ import type { PortalManifestSchemaType } from './portal-manifest-schema.js';
3
3
  export { loadPortalManifest, type PortalManifestExport, type PortalManifestFn, } from './load-portal-manifest.js';
4
- export { createPortalManifestFromPackage } from './create-portal-manifest.js';
4
+ export { createPortalManifestFromPackage } from './create-portal-manifest-from-package.js';
5
5
  /**
6
6
  * Utility to define a portal manifest function with proper typing.
7
7
  *
@@ -23,14 +23,6 @@ export { createPortalManifestFromPackage } from './create-portal-manifest.js';
23
23
  * ```
24
24
  */
25
25
  export declare const definePortalManifest: <T extends PortalManifestSchemaType>(fn: PortalManifestFn<T>) => PortalManifestFn<T>;
26
- export { PortalManifestSchema, PortalManifestBuildSchema, PortalManifestSchemaType as PortalManifest, type PortalManifestBuildSchemaType as PortalManifestBuild, } from './portal-manifest.schema.js';
27
- /**
28
- * Validates a portal manifest object against the PortalManifestSchema.
29
- *
30
- * @param manifest - The manifest object to validate.
31
- * @returns The validated manifest object (typed) if valid.
32
- * @throws ZodError if validation fails.
33
- *
34
- * Use this utility to ensure a manifest conforms to the expected schema before further processing.
35
- */
36
- export declare function validatePortalManifest(manifest: unknown): PortalManifestSchemaType;
26
+ export { PortalManifestSchema, PortalManifestSchemaType as PortalManifest, } from './portal-manifest-schema.js';
27
+ export { PortalManifestBuildSchema, type PortalManifestBuildSchemaType as PortalManifestBuild, } from './portal-manifest-build-schema.js';
28
+ export { validatePortalManifest } from './validate-portal-manifest.js';
@@ -0,0 +1,24 @@
1
+ import type { RuntimeEnv } from '@equinor/fusion-framework-cli/lib';
2
+ /**
3
+ * Represents a generic portal schema as a record of key-value pairs.
4
+ */
5
+ export type PortalSchema = Record<string, unknown>;
6
+ /**
7
+ * A function that returns a portal schema, possibly asynchronously, based on the provided runtime environment.
8
+ * @template T - The type of the portal schema.
9
+ * @param env - The runtime environment used to generate the schema.
10
+ * @returns The portal schema or a promise resolving to the schema.
11
+ */
12
+ export type PortalSchemaFn<T extends PortalSchema> = (env: RuntimeEnv) => T | Promise<T> | T;
13
+ /**
14
+ * Represents either a portal schema object or a function that returns a portal schema.
15
+ * @template T - The type of the portal schema.
16
+ */
17
+ export type PortalSchemaExport<T extends PortalSchema> = T | PortalSchemaFn<T>;
18
+ /**
19
+ * Helper to define a portal schema function with type inference.
20
+ * @template T - The type of the portal schema.
21
+ * @param fn - The schema function to define.
22
+ * @returns The provided schema function.
23
+ */
24
+ export declare const definePortalSchema: <T extends PortalSchema>(fn: PortalSchemaFn<T>) => PortalSchemaFn<T>;
@@ -6,7 +6,8 @@
6
6
  *
7
7
  * @packageDocumentation
8
8
  */
9
- export { createPortalManifestFromPackage, definePortalManifest, loadPortalManifest, validatePortalManifest, type PortalManifest, type PortalManifestExport, type PortalManifestFn, } from './portal-manifest.js';
10
- export { loadPortalSchema, definePortalSchema, type PortalSchema, type PortalSchemaExport, type PortalSchemaFn, } from './load-portal-schema.js';
11
- export { definePortalConfig, type PortalConfig, type PortalConfigFn, } from './portal-config.js';
9
+ export { createPortalManifestFromPackage, definePortalManifest, loadPortalManifest, validatePortalManifest, type PortalManifest, type PortalManifestExport, type PortalManifestFn, } from './define-portal-manifest.js';
10
+ export { definePortalSchema, type PortalSchema, type PortalSchemaExport, type PortalSchemaFn, } from './define-portal-schema.js';
11
+ export { loadPortalSchema } from './load-portal-schema.js';
12
+ export { definePortalConfig, type PortalConfig, type PortalConfigFn, } from './define-portal-config.js';
12
13
  export { loadPortalConfig, type PortalConfigExport, } from './load-portal-config.js';
@@ -1,7 +1,7 @@
1
1
  import z from 'zod';
2
2
  import { type ImportConfigResult } from '@equinor/fusion-imports';
3
3
  import type { RuntimeEnv } from '../types.js';
4
- import type { PortalConfig, PortalConfigFn } from './portal-config.js';
4
+ import type { PortalConfig, PortalConfigFn } from './define-portal-config.js';
5
5
  /**
6
6
  * Represents the configuration export for a portal.
7
7
  *
@@ -1,5 +1,5 @@
1
1
  import type { RecursivePartial, RuntimeEnv } from '../types.js';
2
- import type { PortalManifest } from './portal-manifest.js';
2
+ import type { PortalManifest } from './define-portal-manifest.js';
3
3
  /**
4
4
  * A function type for generating or modifying a portal manifest based on the runtime environment and provided arguments.
5
5
  *
@@ -1,27 +1,5 @@
1
1
  import type { RuntimeEnv } from '@equinor/fusion-framework-cli/lib';
2
- /**
3
- * Represents a generic portal schema as a record of key-value pairs.
4
- */
5
- export type PortalSchema = Record<string, unknown>;
6
- /**
7
- * A function that returns a portal schema, possibly asynchronously, based on the provided runtime environment.
8
- * @template T - The type of the portal schema.
9
- * @param env - The runtime environment used to generate the schema.
10
- * @returns The portal schema or a promise resolving to the schema.
11
- */
12
- export type PortalSchemaFn<T extends PortalSchema> = (env: RuntimeEnv) => T | Promise<T> | T;
13
- /**
14
- * Represents either a portal schema object or a function that returns a portal schema.
15
- * @template T - The type of the portal schema.
16
- */
17
- export type PortalSchemaExport<T extends PortalSchema> = T | PortalSchemaFn<T>;
18
- /**
19
- * Helper to define a portal schema function with type inference.
20
- * @template T - The type of the portal schema.
21
- * @param fn - The schema function to define.
22
- * @returns The provided schema function.
23
- */
24
- export declare const definePortalSchema: <T extends PortalSchema>(fn: PortalSchemaFn<T>) => PortalSchemaFn<T>;
2
+ import type { PortalSchema } from './define-portal-schema.js';
25
3
  /**
26
4
  * Loads a portal schema from configuration files or schema functions.
27
5
  *
@@ -0,0 +1,32 @@
1
+ import { z } from 'zod';
2
+ /**
3
+ * Zod schema for validating the build section of the PortalManifest object.
4
+ *
5
+ * This schema defines the structure and types for the build metadata used in the portal manifest.
6
+ *
7
+ * @remarks
8
+ * - Maintainers: Update this schema if the build contract changes.
9
+ * - This schema is the canonical source for portal build validation and structure.
10
+ */
11
+ export declare const PortalManifestBuildSchema: z.ZodObject<{
12
+ templateEntry: z.ZodString;
13
+ schemaEntry: z.ZodString;
14
+ assetPath: z.ZodOptional<z.ZodString>;
15
+ githubRepo: z.ZodOptional<z.ZodString>;
16
+ version: z.ZodString;
17
+ timestamp: z.ZodString;
18
+ commitSha: z.ZodString;
19
+ annotations: z.ZodPipe<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodNullable<z.ZodString>>>>, z.ZodTransform<{
20
+ [k: string]: string | null | undefined;
21
+ } | undefined, Record<string, string | null | undefined> | undefined>>;
22
+ projectPage: z.ZodOptional<z.ZodString>;
23
+ allowedExtensions: z.ZodArray<z.ZodString>;
24
+ schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
25
+ config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
26
+ }, z.core.$strip>;
27
+ /**
28
+ * Type representing the validated build section of the PortalManifest.
29
+ *
30
+ * This type is inferred from the build Zod schema and should be used for build-specific logic.
31
+ */
32
+ export type PortalManifestBuildSchemaType = z.infer<typeof PortalManifestBuildSchema>;
@@ -1,29 +1,4 @@
1
1
  import { z } from 'zod';
2
- /**
3
- * Zod schema for validating the build section of the PortalManifest object.
4
- *
5
- * This schema defines the structure and types for the build metadata used in the portal manifest.
6
- *
7
- * @remarks
8
- * - Maintainers: Update this schema if the build contract changes.
9
- * - This schema is the canonical source for portal build validation and structure.
10
- */
11
- export declare const PortalManifestBuildSchema: z.ZodObject<{
12
- templateEntry: z.ZodString;
13
- schemaEntry: z.ZodString;
14
- assetPath: z.ZodOptional<z.ZodString>;
15
- githubRepo: z.ZodOptional<z.ZodString>;
16
- version: z.ZodString;
17
- timestamp: z.ZodString;
18
- commitSha: z.ZodString;
19
- annotations: z.ZodPipe<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodNullable<z.ZodString>>>>, z.ZodTransform<{
20
- [k: string]: string | null | undefined;
21
- } | undefined, Record<string, string | null | undefined> | undefined>>;
22
- projectPage: z.ZodOptional<z.ZodString>;
23
- allowedExtensions: z.ZodArray<z.ZodString>;
24
- schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
25
- config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
26
- }, z.core.$strip>;
27
2
  /**
28
3
  * Zod schema for validating the PortalManifest object.
29
4
  *
@@ -62,9 +37,3 @@ export declare const PortalManifestSchema: z.ZodObject<{
62
37
  * to ensure type safety and consistency with the schema.
63
38
  */
64
39
  export type PortalManifestSchemaType = z.infer<typeof PortalManifestSchema>;
65
- /**
66
- * Type representing the validated build section of the PortalManifest.
67
- *
68
- * This type is inferred from the build Zod schema and should be used for build-specific logic.
69
- */
70
- export type PortalManifestBuildSchemaType = z.infer<typeof PortalManifestBuildSchema>;
@@ -0,0 +1,11 @@
1
+ import type { PortalManifestSchemaType } from './portal-manifest-schema.js';
2
+ /**
3
+ * Validates a portal manifest object against the PortalManifestSchema.
4
+ *
5
+ * @param manifest - The manifest object to validate.
6
+ * @returns The validated manifest object (typed) if valid.
7
+ * @throws ZodError if validation fails.
8
+ *
9
+ * Use this utility to ensure a manifest conforms to the expected schema before further processing.
10
+ */
11
+ export declare function validatePortalManifest(manifest: unknown): PortalManifestSchemaType;
@@ -1,10 +1 @@
1
- /**
2
- * A constant array of supported asset file extensions categorized by type.
3
- *
4
- * The extensions are grouped as follows:
5
- * - **Images**: `png`, `jpg`, `jpeg`, `gif`, `svg`, `ico`, `webp`
6
- * - **Videos and audio**: `mp4`, `webm`, `mp3`
7
- * - **Fonts**: `woff2`, `woff`, `eot`, `ttf`, `otf`
8
- * - **Documents**: `pdf`, `md`, `txt`
9
- */
10
1
  export declare const ASSET_EXTENSIONS: readonly ["png", "jpg", "jpeg", "gif", "svg", "ico", "webp", "mp4", "webm", "mp3", "woff2", "woff", "eot", "ttf", "otf", "pdf", "md", "txt"];
@@ -0,0 +1,20 @@
1
+ /**
2
+ * Asserts that the provided value is an object.
3
+ *
4
+ * This function checks that the value has type 'object'. Note that
5
+ * typeof null is 'object' in JavaScript, so null values will pass this check.
6
+ *
7
+ * @param value - The value to check for being an object
8
+ * @param message - Optional custom error message or Error instance
9
+ * @returns Nothing; narrows `value` via the `asserts` return type. Throws on failure.
10
+ * @throws {AssertionError} If value is not an object
11
+ *
12
+ * @example
13
+ * ```typescript
14
+ * assertObject({}); // ✅ Passes
15
+ * assertObject([]); // ✅ Passes
16
+ * assertObject(null); // ✅ Passes (typeof null === 'object')
17
+ * assertObject('string'); // ❌ Throws AssertionError
18
+ * ```
19
+ */
20
+ export declare function assertObject(value: object, message?: string | Error): asserts value;
@@ -1,106 +1,7 @@
1
- import assert, { AssertionError } from 'node:assert';
2
1
  /**
3
2
  * Re-exports the core Node.js assert function and AssertionError class.
4
3
  *
5
4
  * This provides consistent assertion handling throughout the codebase
6
5
  * with proper TypeScript type narrowing support.
7
6
  */
8
- export { assert, AssertionError };
9
- /**
10
- * Asserts that the provided value is a valid number (not NaN).
11
- *
12
- * This function checks that the value is not NaN, which is useful for
13
- * validating numeric inputs that might be strings or other types that
14
- * could convert to NaN.
15
- *
16
- * @param value - The value to check for being a valid number
17
- * @param message - Optional custom error message for assertion failure
18
- * @throws {AssertionError} If value is NaN
19
- *
20
- * @example
21
- * ```typescript
22
- * assertNumber(42); // ✅ Passes
23
- * assertNumber('42'); // ✅ Passes (string converts to number)
24
- * assertNumber(NaN); // ❌ Throws AssertionError
25
- * assertNumber('invalid'); // ❌ Throws AssertionError
26
- * ```
27
- */
28
- export declare function assertNumber(value: unknown, message?: string): asserts value;
29
- /**
30
- * Asserts that a file exists at the given path.
31
- *
32
- * This function uses the fileExists utility to check for file presence
33
- * and throws an AssertionError if the file is not found.
34
- *
35
- * @param value - The file path to check
36
- * @param message - Optional custom error message for assertion failure
37
- * @throws {AssertionError} If the file does not exist
38
- *
39
- * @example
40
- * ```typescript
41
- * assertFileExists('/path/to/file.txt'); // ✅ Passes if file exists
42
- * assertFileExists('/nonexistent/file.txt'); // ❌ Throws AssertionError
43
- * ```
44
- */
45
- export declare const assertFileExists: (value: unknown, message?: string) => asserts value;
46
- /**
47
- * Asserts that the provided value is an object.
48
- *
49
- * This function checks that the value has type 'object'. Note that
50
- * typeof null is 'object' in JavaScript, so null values will pass this check.
51
- *
52
- * @param value - The value to check for being an object
53
- * @param message - Optional custom error message or Error instance
54
- * @throws {AssertionError} If value is not an object
55
- *
56
- * @example
57
- * ```typescript
58
- * assertObject({}); // ✅ Passes
59
- * assertObject([]); // ✅ Passes
60
- * assertObject(null); // ✅ Passes (typeof null === 'object')
61
- * assertObject('string'); // ❌ Throws AssertionError
62
- * ```
63
- */
64
- export declare function assertObject(value: object, message?: string | Error): asserts value;
65
- /**
66
- * Asserts that a specific property exists and has a value on an object.
67
- * Used internally for property value checks.
68
- *
69
- * @param value - The value of the property to check.
70
- * @param prop - The property key being checked.
71
- * @param message - Optional custom error message.
72
- * @throws {AssertionError} If the property value is falsy.
73
- */
74
- declare function assertObjectEntryValue<P>(value: unknown, prop: P, message?: string): asserts value;
75
- /**
76
- * Asserts that an object contains the specified properties and that each property has a value.
77
- * Allows for custom assertion logic and pre-message prefixing.
78
- *
79
- * @typeParam T - The object type to check.
80
- * @typeParam P - The array of property keys to check on the object.
81
- * @param value - The object to check.
82
- * @param options - Optional settings for property keys, assertion function, and message prefix.
83
- * @throws {AssertionError} If any property is missing or fails the assertion.
84
- */
85
- export declare function assertObjectEntries<T extends object, P extends Array<keyof T>>(value: T, options?: {
86
- props?: P;
87
- assertion?: typeof assertObjectEntryValue;
88
- preMessage?: string;
89
- }): asserts value;
90
- /**
91
- * Asserts that a directory exists and is a valid git repository.
92
- *
93
- * This function checks if the specified directory contains a valid
94
- * git repository by looking for the .git directory or file.
95
- *
96
- * @param dir - Directory path to check for git repository
97
- * @param message - Optional custom error message for assertion failure
98
- * @throws {AssertionError} If the directory is not a git repository
99
- *
100
- * @example
101
- * ```typescript
102
- * assertGitRepository('/path/to/git/repo'); // ✅ Passes if .git exists
103
- * assertGitRepository('/path/to/regular/dir'); // ❌ Throws AssertionError
104
- * ```
105
- */
106
- export declare function assertGitRepository(dir: string, message?: string): void;
7
+ export { default as assert, AssertionError } from 'node:assert';
@@ -0,0 +1,20 @@
1
+ /**
2
+ * Fetches only the latest version of a package from npm registry.
3
+ *
4
+ * This is a convenience function that retrieves only the latest version
5
+ * string without the overhead of fetching complete package metadata.
6
+ * Useful for simple version checks and dependency resolution.
7
+ *
8
+ * @param packageName - The name of the package to fetch (e.g., "@equinor/fusion-framework")
9
+ * @param registry - The npm registry URL (defaults to https://registry.npmjs.org)
10
+ * @returns Promise resolving to the latest version string (e.g., "1.0.0")
11
+ * @throws {Error} If the package cannot be found or fetched
12
+ *
13
+ * @example
14
+ * ```typescript
15
+ * // Get latest version for dependency resolution
16
+ * const version = await fetchLatestVersion('@equinor/fusion-framework');
17
+ * console.log(`Latest version: ${version}`);
18
+ * ```
19
+ */
20
+ export declare function fetchLatestVersion(packageName: string, registry?: string): Promise<string>;
@@ -59,48 +59,3 @@ export interface PackageInfo {
59
59
  * ```
60
60
  */
61
61
  export declare function fetchPackageInfo(packageName: string, registry?: string): Promise<PackageInfo>;
62
- /**
63
- * Fetches only the latest version of a package from npm registry.
64
- *
65
- * This is a convenience function that retrieves only the latest version
66
- * string without the overhead of fetching complete package metadata.
67
- * Useful for simple version checks and dependency resolution.
68
- *
69
- * @param packageName - The name of the package to fetch (e.g., "@equinor/fusion-framework")
70
- * @param registry - The npm registry URL (defaults to https://registry.npmjs.org)
71
- * @returns Promise resolving to the latest version string (e.g., "1.0.0")
72
- * @throws {Error} If the package cannot be found or fetched
73
- *
74
- * @example
75
- * ```typescript
76
- * // Get latest version for dependency resolution
77
- * const version = await fetchLatestVersion('@equinor/fusion-framework');
78
- * console.log(`Latest version: ${version}`);
79
- * ```
80
- */
81
- export declare function fetchLatestVersion(packageName: string, registry?: string): Promise<string>;
82
- /**
83
- * Fetches multiple packages' information in parallel for better performance.
84
- *
85
- * This function efficiently retrieves package information for multiple packages
86
- * simultaneously, using Promise.allSettled to handle individual failures gracefully.
87
- * Failed packages are silently excluded from the results.
88
- *
89
- * @param packageNames - Array of package names to fetch (e.g., ["@equinor/fusion-framework", "react"])
90
- * @param registry - The npm registry URL (defaults to https://registry.npmjs.org)
91
- * @returns Promise resolving to a map of package names to their information
92
- *
93
- * @example
94
- * ```typescript
95
- * // Fetch multiple packages for dependency analysis
96
- * const packages = await fetchMultiplePackageInfo([
97
- * '@equinor/fusion-framework',
98
- * 'react',
99
- * 'typescript'
100
- * ]);
101
- *
102
- * // Check which packages were successfully fetched
103
- * console.log(`Fetched ${Object.keys(packages).length} packages`);
104
- * ```
105
- */
106
- export declare function fetchMultiplePackageInfo(packageNames: string[], registry?: string): Promise<Record<string, PackageInfo>>;
@@ -0,0 +1,21 @@
1
+ /** Options for file existence checks. */
2
+ type Options = {
3
+ /** If true, throws the underlying error instead of returning false. */
4
+ assert?: boolean;
5
+ };
6
+ /**
7
+ * Synchronously checks whether a file exists at the given path.
8
+ *
9
+ * @param file - Absolute or relative file path to check.
10
+ * @param options - When `assert` is true, the underlying `ENOENT` error is re-thrown instead of returning `false`.
11
+ * @returns `true` if the file is accessible, `false` otherwise (unless `assert` is set).
12
+ *
13
+ * @example
14
+ * ```ts
15
+ * if (fileExistsSync('tsconfig.json')) {
16
+ * // file is present
17
+ * }
18
+ * ```
19
+ */
20
+ export declare const fileExistsSync: (file: string, options?: Options) => boolean;
21
+ export {};
@@ -3,21 +3,6 @@ type Options = {
3
3
  /** If true, throws the underlying error instead of returning false. */
4
4
  assert?: boolean;
5
5
  };
6
- /**
7
- * Synchronously checks whether a file exists at the given path.
8
- *
9
- * @param file - Absolute or relative file path to check.
10
- * @param options - When `assert` is true, the underlying `ENOENT` error is re-thrown instead of returning `false`.
11
- * @returns `true` if the file is accessible, `false` otherwise (unless `assert` is set).
12
- *
13
- * @example
14
- * ```ts
15
- * if (fileExistsSync('tsconfig.json')) {
16
- * // file is present
17
- * }
18
- * ```
19
- */
20
- export declare const fileExistsSync: (file: string, options?: Options) => boolean;
21
6
  /**
22
7
  * Asynchronously checks whether a file exists at the given path.
23
8
  *
@@ -7,9 +7,10 @@
7
7
  * @packageDocumentation
8
8
  */
9
9
  export { assert } from './assert.js';
10
- export { resolveEntryPoint } from './resolve-source-entry-point.js';
10
+ export { resolveEntryPoint } from './resolve-entry-point.js';
11
11
  export { resolvePackage, type ResolvedPackage } from './resolve-package.js';
12
- export { fileExists, fileExistsSync } from './file-exists.js';
12
+ export { fileExistsSync } from './file-exists-sync.js';
13
+ export { fileExists } from './file-exists.js';
13
14
  export { writeFile } from './write-file.js';
14
15
  export { resolveAnnotations } from './resolve-annotations.js';
15
- export { generateSnapshotVersion } from './snapshot.js';
16
+ export { generateSnapshotVersion } from './generate-snapshot-version.js';
@@ -0,0 +1,15 @@
1
+ /**
2
+ * Safely removes a directory with path traversal protection.
3
+ *
4
+ * This function validates the target path before performing the removal
5
+ * operation to prevent accidental deletion of unintended directories.
6
+ *
7
+ * @param targetPath - The path to remove
8
+ * @param options - rmSync options
9
+ * @param baseDir - Optional base directory constraint
10
+ * @throws {Error} If path validation fails or removal operation fails
11
+ */
12
+ export declare function safeRmSync(targetPath: string, options: {
13
+ recursive: boolean;
14
+ force: boolean;
15
+ }, baseDir?: string): void;
@@ -19,18 +19,3 @@
19
19
  * ```
20
20
  */
21
21
  export declare function validateSafePath(targetPath: string, baseDir?: string): string;
22
- /**
23
- * Safely removes a directory with path traversal protection.
24
- *
25
- * This function validates the target path before performing the removal
26
- * operation to prevent accidental deletion of unintended directories.
27
- *
28
- * @param targetPath - The path to remove
29
- * @param options - rmSync options
30
- * @param baseDir - Optional base directory constraint
31
- * @throws {Error} If path validation fails or removal operation fails
32
- */
33
- export declare function safeRmSync(targetPath: string, options: {
34
- recursive: boolean;
35
- force: boolean;
36
- }, baseDir?: string): void;
@@ -1 +1 @@
1
- export declare const version = "15.1.8";
1
+ export declare const version = "15.2.1";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equinor/fusion-framework-cli",
3
- "version": "15.1.8",
3
+ "version": "15.2.1",
4
4
  "keywords": [
5
5
  "Fusion",
6
6
  "Fusion Framework",
@@ -111,11 +111,11 @@
111
111
  "vite": "^8.0.0",
112
112
  "vite-tsconfig-paths": "^6.0.4",
113
113
  "zod": "^4.4.3",
114
- "@equinor/fusion-framework-dev-portal": "8.0.0",
115
- "@equinor/fusion-framework-vite-plugin-raw-imports": "2.0.0",
116
- "@equinor/fusion-imports": "2.0.0",
117
- "@equinor/fusion-framework-module-azure-identity": "0.2.1",
118
- "@equinor/fusion-framework-dev-server": "2.0.14"
114
+ "@equinor/fusion-framework-dev-server": "2.0.15",
115
+ "@equinor/fusion-framework-module-azure-identity": "0.2.2",
116
+ "@equinor/fusion-imports": "2.0.1",
117
+ "@equinor/fusion-framework-vite-plugin-raw-imports": "2.0.1",
118
+ "@equinor/fusion-framework-dev-portal": "8.0.1"
119
119
  },
120
120
  "devDependencies": {
121
121
  "@rollup/plugin-commonjs": "^29.0.0",
@@ -136,13 +136,13 @@
136
136
  "rollup": "^4.59.0",
137
137
  "rxjs": "^7.8.1",
138
138
  "type-fest": "^5.0.0",
139
- "typescript": "^6.0.3",
139
+ "typescript": "^7.0.2",
140
140
  "vitest": "^4.1.0",
141
- "@equinor/fusion-framework-module": "6.1.0",
142
- "@equinor/fusion-framework-module-app": "8.0.2",
143
- "@equinor/fusion-framework-module-http": "8.0.3",
144
- "@equinor/fusion-framework-module-service-discovery": "10.0.1",
145
- "@equinor/fusion-framework-react-router": "2.2.0"
141
+ "@equinor/fusion-framework-module": "6.1.1",
142
+ "@equinor/fusion-framework-module-app": "8.0.3",
143
+ "@equinor/fusion-framework-module-http": "8.0.4",
144
+ "@equinor/fusion-framework-react-router": "2.3.1",
145
+ "@equinor/fusion-framework-module-service-discovery": "10.0.2"
146
146
  },
147
147
  "peerDependenciesMeta": {
148
148
  "typescript": {
@@ -1 +0,0 @@
1
- {"version":3,"file":"app-config.js","sourceRoot":"","sources":["../../../../src/lib/app/app-config.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAoBvD;;;;;;;;GAQG;AACH,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,EAAe,EAAE,EAAE,CAAC,EAAE,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"app-manifest.js","sourceRoot":"","sources":["../../../../src/lib/app/app-manifest.ts"],"names":[],"mappings":"AA+BA;;;;;;;;;;;;GAYG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,EAAiB,EAAE,EAAE,CAAC,EAAE,CAAC"}