packtory 0.0.96 → 0.0.97
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/artifacts/artifacts-builder.d.ts +28 -0
- package/artifacts/artifacts-builder.d.ts.map +1 -0
- package/artifacts/artifacts-builder.js +37 -4
- package/artifacts/artifacts-builder.js.map +1 -1
- package/artifacts/content-collection.js +59 -2
- package/artifacts/content-collection.js.map +1 -1
- package/artifacts/folder-writer.js +25 -2
- package/artifacts/folder-writer.js.map +1 -1
- package/bundle-emitter/emitter.d.ts +8 -0
- package/bundle-emitter/emitter.d.ts.map +1 -1
- package/bundle-emitter/emitter.js +137 -6
- package/bundle-emitter/emitter.js.map +1 -1
- package/bundle-emitter/extract-package-tarball.js +13 -2
- package/bundle-emitter/extract-package-tarball.js.map +1 -1
- package/bundle-emitter/fetch-published-artifacts.d.ts +2 -0
- package/bundle-emitter/fetch-published-artifacts.d.ts.map +1 -1
- package/bundle-emitter/fetch-published-artifacts.js +19 -2
- package/bundle-emitter/fetch-published-artifacts.js.map +1 -1
- package/bundle-emitter/publication-outcome.d.ts +3 -0
- package/bundle-emitter/publication-outcome.d.ts.map +1 -1
- package/bundle-emitter/publication-outcome.js +5 -0
- package/bundle-emitter/publication-outcome.js.map +1 -1
- package/bundle-emitter/publish-error/auto-mode-error-matching.js +28 -2
- package/bundle-emitter/publish-error/auto-mode-error-matching.js.map +1 -1
- package/bundle-emitter/publish-error/error-shape-helpers.js +9 -0
- package/bundle-emitter/publish-error/error-shape-helpers.js.map +1 -1
- package/bundle-emitter/publish-error/file-mode-error-matching.js +33 -2
- package/bundle-emitter/publish-error/file-mode-error-matching.js.map +1 -1
- package/bundle-emitter/publish-error/publish-error-messages.js +24 -0
- package/bundle-emitter/publish-error/publish-error-messages.js.map +1 -1
- package/bundle-emitter/registry/metadata-auth-retry.js +24 -1
- package/bundle-emitter/registry/metadata-auth-retry.js.map +1 -1
- package/bundle-emitter/registry/oidc-token-exchange.js +68 -3
- package/bundle-emitter/registry/oidc-token-exchange.js.map +1 -1
- package/bundle-emitter/registry/package-metadata-fetcher.d.ts +14 -0
- package/bundle-emitter/registry/package-metadata-fetcher.d.ts.map +1 -1
- package/bundle-emitter/registry/package-metadata-fetcher.js +210 -7
- package/bundle-emitter/registry/package-metadata-fetcher.js.map +1 -1
- package/bundle-emitter/registry/publish-settings-bridge.js +34 -3
- package/bundle-emitter/registry/publish-settings-bridge.js.map +1 -1
- package/bundle-emitter/registry/registry-auth-config.d.ts +17 -0
- package/bundle-emitter/registry/registry-auth-config.d.ts.map +1 -0
- package/bundle-emitter/registry/registry-auth-config.js +106 -0
- package/bundle-emitter/registry/registry-auth-config.js.map +1 -1
- package/bundle-emitter/registry/registry-client.d.ts +13 -1
- package/bundle-emitter/registry/registry-client.d.ts.map +1 -1
- package/bundle-emitter/registry/registry-client.js +74 -4
- package/bundle-emitter/registry/registry-client.js.map +1 -1
- package/bundle-emitter/registry/registry-package-path.js +3 -0
- package/bundle-emitter/registry/registry-package-path.js.map +1 -1
- package/bundle-emitter/registry/registry-response-schemas.js +50 -2
- package/bundle-emitter/registry/registry-response-schemas.js.map +1 -1
- package/bundle-emitter/registry/tarball-integrity.d.ts +1 -0
- package/bundle-emitter/registry/tarball-integrity.d.ts.map +1 -1
- package/bundle-emitter/registry/tarball-integrity.js +31 -1
- package/bundle-emitter/registry/tarball-integrity.js.map +1 -1
- package/bundle-emitter/registry/validate-tarball-host.js +26 -1
- package/bundle-emitter/registry/validate-tarball-host.js.map +1 -1
- package/bundle-emitter/release-artifact-canonicalizer.js +31 -5
- package/bundle-emitter/release-artifact-canonicalizer.js.map +1 -1
- package/checks/check-runner.d.ts +18 -0
- package/checks/check-runner.d.ts.map +1 -0
- package/checks/check-runner.js +8 -0
- package/checks/check-runner.js.map +1 -1
- package/checks/rule.d.ts +42 -0
- package/checks/rule.d.ts.map +1 -0
- package/checks/rule.js +12 -2
- package/checks/rule.js.map +1 -1
- package/checks/rules/duplicate-detection.js +23 -1
- package/checks/rules/duplicate-detection.js.map +1 -1
- package/checks/rules/duplicate-messages.js +22 -0
- package/checks/rules/duplicate-messages.js.map +1 -1
- package/checks/rules/file-ownership.js +15 -0
- package/checks/rules/file-ownership.js.map +1 -1
- package/checks/rules/max-bundle-size.d.ts +13 -0
- package/checks/rules/max-bundle-size.d.ts.map +1 -0
- package/checks/rules/max-bundle-size.js +55 -1
- package/checks/rules/max-bundle-size.js.map +1 -1
- package/checks/rules/no-dev-dependency-imports.d.ts +11 -0
- package/checks/rules/no-dev-dependency-imports.d.ts.map +1 -0
- package/checks/rules/no-dev-dependency-imports.js +51 -1
- package/checks/rules/no-dev-dependency-imports.js.map +1 -1
- package/checks/rules/no-duplicated-files.d.ts +11 -0
- package/checks/rules/no-duplicated-files.d.ts.map +1 -0
- package/checks/rules/no-duplicated-files.js +53 -3
- package/checks/rules/no-duplicated-files.js.map +1 -1
- package/checks/rules/no-side-effects.d.ts +15 -0
- package/checks/rules/no-side-effects.d.ts.map +1 -0
- package/checks/rules/no-side-effects.js +50 -1
- package/checks/rules/no-side-effects.js.map +1 -1
- package/checks/rules/no-unexposed-executables.d.ts +8 -0
- package/checks/rules/no-unexposed-executables.d.ts.map +1 -0
- package/checks/rules/no-unexposed-executables.js +43 -2
- package/checks/rules/no-unexposed-executables.js.map +1 -1
- package/checks/rules/no-unused-bundle-dependencies.d.ts +8 -0
- package/checks/rules/no-unused-bundle-dependencies.d.ts.map +1 -0
- package/checks/rules/no-unused-bundle-dependencies.js +30 -2
- package/checks/rules/no-unused-bundle-dependencies.js.map +1 -1
- package/checks/rules/registry.d.ts +23 -0
- package/checks/rules/registry.d.ts.map +1 -0
- package/checks/rules/registry.js +22 -9
- package/checks/rules/registry.js.map +1 -1
- package/checks/rules/required-files.d.ts +15 -0
- package/checks/rules/required-files.d.ts.map +1 -0
- package/checks/rules/required-files.js +41 -3
- package/checks/rules/required-files.js.map +1 -1
- package/checks/rules/type-script-declaration-integrity.d.ts +9 -0
- package/checks/rules/type-script-declaration-integrity.d.ts.map +1 -0
- package/checks/rules/type-script-declaration-integrity.js +81 -3
- package/checks/rules/type-script-declaration-integrity.js.map +1 -1
- package/checks/rules/type-script-declaration-paths.js +55 -1
- package/checks/rules/type-script-declaration-paths.js.map +1 -1
- package/checks/rules/type-script-declaration-project.d.ts +29 -0
- package/checks/rules/type-script-declaration-project.d.ts.map +1 -0
- package/checks/rules/type-script-declaration-project.js +202 -3
- package/checks/rules/type-script-declaration-project.js.map +1 -1
- package/checks/rules/type-script-declaration-reachability.js +38 -2
- package/checks/rules/type-script-declaration-reachability.js.map +1 -1
- package/checks/rules/type-script-declaration-roots.js +29 -0
- package/checks/rules/type-script-declaration-roots.js.map +1 -1
- package/checks/rules/type-script-integrity.d.ts +24 -0
- package/checks/rules/type-script-integrity.d.ts.map +1 -0
- package/checks/rules/type-script-integrity.js +72 -2
- package/checks/rules/type-script-integrity.js.map +1 -1
- package/checks/rules/type-script-package-resolution.d.ts +29 -0
- package/checks/rules/type-script-package-resolution.d.ts.map +1 -0
- package/checks/rules/type-script-package-resolution.js +42 -1
- package/checks/rules/type-script-package-resolution.js.map +1 -1
- package/checks/rules/type-script-resolution-summary.js +53 -0
- package/checks/rules/type-script-resolution-summary.js.map +1 -1
- package/checks/rules/unique-target-paths.d.ts +8 -0
- package/checks/rules/unique-target-paths.d.ts.map +1 -0
- package/checks/rules/unique-target-paths.js +34 -2
- package/checks/rules/unique-target-paths.js.map +1 -1
- package/common/bundled-dependency-groups.js +27 -0
- package/common/bundled-dependency-groups.js.map +1 -1
- package/common/code-files.js +28 -0
- package/common/code-files.js.map +1 -1
- package/common/declaration-companion-paths.js +24 -0
- package/common/declaration-companion-paths.js.map +1 -1
- package/common/package-name-map.js +7 -0
- package/common/package-name-map.js.map +1 -1
- package/common/stable-json.js +42 -2
- package/common/stable-json.js.map +1 -1
- package/common/worklist.js +22 -0
- package/common/worklist.js.map +1 -1
- package/config/additional-files.js +6 -2
- package/config/additional-files.js.map +1 -1
- package/config/additional-package-json-attributes-schema.js +6 -2
- package/config/additional-package-json-attributes-schema.js.map +1 -1
- package/config/automatic-versioning-settings.js +6 -2
- package/config/automatic-versioning-settings.js.map +1 -1
- package/config/changelog-settings.d.ts +44 -0
- package/config/changelog-settings.d.ts.map +1 -1
- package/config/changelog-settings.js +120 -3
- package/config/changelog-settings.js.map +1 -1
- package/config/common-package-settings-schemas.js +19 -3
- package/config/common-package-settings-schemas.js.map +1 -1
- package/config/config.d.ts +6 -1
- package/config/config.d.ts.map +1 -1
- package/config/config.js +3 -1
- package/config/config.js.map +1 -1
- package/config/cross-package-validation.js +17 -0
- package/config/cross-package-validation.js.map +1 -1
- package/config/dead-code-elimination-settings.d.ts +1 -0
- package/config/dead-code-elimination-settings.d.ts.map +1 -1
- package/config/dead-code-elimination-settings.js +36 -2
- package/config/dead-code-elimination-settings.js.map +1 -1
- package/config/dependency-existence-validation.js +19 -1
- package/config/dependency-existence-validation.js.map +1 -1
- package/config/dependency-policy.js +5 -2
- package/config/dependency-policy.js.map +1 -1
- package/config/main-package-json-schema.js +13 -2
- package/config/main-package-json-schema.js.map +1 -1
- package/config/manual-versioning-settings.d.ts +12 -0
- package/config/manual-versioning-settings.d.ts.map +1 -1
- package/config/manual-versioning-settings.js +29 -2
- package/config/manual-versioning-settings.js.map +1 -1
- package/config/optional-package-settings-schema.js +16 -7
- package/config/optional-package-settings-schema.js.map +1 -1
- package/config/package-config.d.ts +4 -0
- package/config/package-config.d.ts.map +1 -1
- package/config/package-config.js +2 -1
- package/config/package-config.js.map +1 -1
- package/config/package-graph-builder.js +14 -2
- package/config/package-graph-builder.js.map +1 -1
- package/config/package-interface.js +25 -2
- package/config/package-interface.js.map +1 -1
- package/config/package-json.d.ts +2 -0
- package/config/package-json.d.ts.map +1 -1
- package/config/package-json.js +16 -0
- package/config/package-json.js.map +1 -1
- package/config/packtory-config-without-registry-schema.js +6 -0
- package/config/packtory-config-without-registry-schema.js.map +1 -1
- package/config/per-package-settings-schema.js +22 -6
- package/config/per-package-settings-schema.js.map +1 -1
- package/config/pre-graph-validation.js +20 -5
- package/config/pre-graph-validation.js.map +1 -1
- package/config/publish-settings.d.ts +3 -0
- package/config/publish-settings.d.ts.map +1 -1
- package/config/publish-settings.js +25 -3
- package/config/publish-settings.js.map +1 -1
- package/config/publish-settings.report.js +17 -1
- package/config/publish-settings.report.js.map +1 -1
- package/config/registry-settings.d.ts +41 -0
- package/config/registry-settings.d.ts.map +1 -1
- package/config/registry-settings.js +40 -2
- package/config/registry-settings.js.map +1 -1
- package/config/registry-settings.report.js +46 -0
- package/config/registry-settings.report.js.map +1 -1
- package/config/root-config-validation.js +141 -0
- package/config/root-config-validation.js.map +1 -1
- package/config/root.js +6 -2
- package/config/root.js.map +1 -1
- package/config/sbom-settings.js +4 -1
- package/config/sbom-settings.js.map +1 -1
- package/config/settings-validation.js +28 -0
- package/config/settings-validation.js.map +1 -1
- package/config/versioning-settings.d.ts +18 -1
- package/config/versioning-settings.d.ts.map +1 -1
- package/config/versioning-settings.js +10 -3
- package/config/versioning-settings.js.map +1 -1
- package/dead-code-eliminator/analyzed-bundle.d.ts +11 -0
- package/dead-code-eliminator/analyzed-bundle.d.ts.map +1 -1
- package/dead-code-eliminator/analyzed-bundle.js +7 -0
- package/dead-code-eliminator/analyzed-bundle.js.map +1 -1
- package/dead-code-eliminator/bundle-analysis.js +38 -5
- package/dead-code-eliminator/bundle-analysis.js.map +1 -1
- package/dead-code-eliminator/class-purity.js +48 -2
- package/dead-code-eliminator/class-purity.js.map +1 -1
- package/dead-code-eliminator/code-file-analyzer.js +68 -4
- package/dead-code-eliminator/code-file-analyzer.js.map +1 -1
- package/dead-code-eliminator/cross-bundle/bundle-index.js +10 -0
- package/dead-code-eliminator/cross-bundle/bundle-index.js.map +1 -1
- package/dead-code-eliminator/cross-bundle/cross-bundle-seeds.js +22 -3
- package/dead-code-eliminator/cross-bundle/cross-bundle-seeds.js.map +1 -1
- package/dead-code-eliminator/cross-bundle/import-export-walker.js +164 -3
- package/dead-code-eliminator/cross-bundle/import-export-walker.js.map +1 -1
- package/dead-code-eliminator/cross-bundle/seed-store.js +10 -0
- package/dead-code-eliminator/cross-bundle/seed-store.js.map +1 -1
- package/dead-code-eliminator/dependency-metadata.js +172 -2
- package/dead-code-eliminator/dependency-metadata.js.map +1 -1
- package/dead-code-eliminator/elimination-emitter.js +52 -0
- package/dead-code-eliminator/elimination-emitter.js.map +1 -1
- package/dead-code-eliminator/eliminator.js +22 -4
- package/dead-code-eliminator/eliminator.js.map +1 -1
- package/dead-code-eliminator/expression-unwrapping.js +16 -1
- package/dead-code-eliminator/expression-unwrapping.js.map +1 -1
- package/dead-code-eliminator/imported-expression-origin.js +101 -2
- package/dead-code-eliminator/imported-expression-origin.js.map +1 -1
- package/dead-code-eliminator/liveness/asset-side-effects.js +9 -1
- package/dead-code-eliminator/liveness/asset-side-effects.js.map +1 -1
- package/dead-code-eliminator/liveness/boolean-facts.js +98 -2
- package/dead-code-eliminator/liveness/boolean-facts.js.map +1 -1
- package/dead-code-eliminator/liveness/external-module-resolution.js +172 -2
- package/dead-code-eliminator/liveness/external-module-resolution.js.map +1 -1
- package/dead-code-eliminator/liveness/external-purity-summary.js +294 -3
- package/dead-code-eliminator/liveness/external-purity-summary.js.map +1 -1
- package/dead-code-eliminator/liveness/external-purity.js +39 -3
- package/dead-code-eliminator/liveness/external-purity.js.map +1 -1
- package/dead-code-eliminator/liveness/module-analysis.js +27 -2
- package/dead-code-eliminator/liveness/module-analysis.js.map +1 -1
- package/dead-code-eliminator/liveness/resource-retention.js +91 -1
- package/dead-code-eliminator/liveness/resource-retention.js.map +1 -1
- package/dead-code-eliminator/liveness/runtime-code.js +15 -1
- package/dead-code-eliminator/liveness/runtime-code.js.map +1 -1
- package/dead-code-eliminator/load-bundle.js +86 -5
- package/dead-code-eliminator/load-bundle.js.map +1 -1
- package/dead-code-eliminator/pure-expression.js +178 -5
- package/dead-code-eliminator/pure-expression.js.map +1 -1
- package/dead-code-eliminator/reachability/bfs-closure.js +53 -0
- package/dead-code-eliminator/reachability/bfs-closure.js.map +1 -1
- package/dead-code-eliminator/reachability/binding-extractor.js +100 -2
- package/dead-code-eliminator/reachability/binding-extractor.js.map +1 -1
- package/dead-code-eliminator/reachability/binding-id.js +106 -1
- package/dead-code-eliminator/reachability/binding-id.js.map +1 -1
- package/dead-code-eliminator/reachability/identifier-target-collector.js +96 -1
- package/dead-code-eliminator/reachability/identifier-target-collector.js.map +1 -1
- package/dead-code-eliminator/reachability/impure-statements.js +11 -2
- package/dead-code-eliminator/reachability/impure-statements.js.map +1 -1
- package/dead-code-eliminator/reachability/local-seed-gathering.js +91 -4
- package/dead-code-eliminator/reachability/local-seed-gathering.js.map +1 -1
- package/dead-code-eliminator/reachability/reachability.js +65 -4
- package/dead-code-eliminator/reachability/reachability.js.map +1 -1
- package/dead-code-eliminator/side-effect-classifier.js +39 -4
- package/dead-code-eliminator/side-effect-classifier.js.map +1 -1
- package/dead-code-eliminator/side-effects-field.js +23 -1
- package/dead-code-eliminator/side-effects-field.js.map +1 -1
- package/dead-code-eliminator/source-map-recomposition.js +29 -2
- package/dead-code-eliminator/source-map-recomposition.js.map +1 -1
- package/dead-code-eliminator/statement-classifiers.js +94 -4
- package/dead-code-eliminator/statement-classifiers.js.map +1 -1
- package/dead-code-eliminator/syntax-kind-sets.js +16 -0
- package/dead-code-eliminator/syntax-kind-sets.js.map +1 -1
- package/dead-code-eliminator/transform/atom-translator.d.ts +8 -0
- package/dead-code-eliminator/transform/atom-translator.d.ts.map +1 -1
- package/dead-code-eliminator/transform/atom-translator.js +57 -2
- package/dead-code-eliminator/transform/atom-translator.js.map +1 -1
- package/dead-code-eliminator/transform/declaration-removal.js +183 -5
- package/dead-code-eliminator/transform/declaration-removal.js.map +1 -1
- package/dead-code-eliminator/transform/declaration-remover.js +17 -2
- package/dead-code-eliminator/transform/declaration-remover.js.map +1 -1
- package/dead-code-eliminator/transform/line-index.d.ts +7 -0
- package/dead-code-eliminator/transform/line-index.d.ts.map +1 -1
- package/dead-code-eliminator/transform/line-index.js +20 -0
- package/dead-code-eliminator/transform/line-index.js.map +1 -1
- package/dead-code-eliminator/transform/named-declaration-kinds.js +3 -0
- package/dead-code-eliminator/transform/named-declaration-kinds.js.map +1 -1
- package/dead-code-eliminator/transform/source-map-composer.js +84 -3
- package/dead-code-eliminator/transform/source-map-composer.js.map +1 -1
- package/dead-code-eliminator/variable-declaration-bindings.js +25 -1
- package/dead-code-eliminator/variable-declaration-bindings.js.map +1 -1
- package/dependency-scanner/dependency-graph.d.ts +41 -0
- package/dependency-scanner/dependency-graph.d.ts.map +1 -0
- package/dependency-scanner/dependency-graph.js +77 -3
- package/dependency-scanner/dependency-graph.js.map +1 -1
- package/dependency-scanner/external-dependencies.d.ts +9 -0
- package/dependency-scanner/external-dependencies.d.ts.map +1 -1
- package/dependency-scanner/external-dependencies.js +55 -1
- package/dependency-scanner/external-dependencies.js.map +1 -1
- package/dependency-scanner/file-host-predicates.js +9 -0
- package/dependency-scanner/file-host-predicates.js.map +1 -1
- package/dependency-scanner/host-method-binding.js +18 -0
- package/dependency-scanner/host-method-binding.js.map +1 -1
- package/dependency-scanner/injected-dynamic-imports.js +232 -1
- package/dependency-scanner/injected-dynamic-imports.js.map +1 -1
- package/dependency-scanner/node-modules-manifest-synthesizer.js +52 -4
- package/dependency-scanner/node-modules-manifest-synthesizer.js.map +1 -1
- package/dependency-scanner/package-owned-asset-file-path.js +9 -1
- package/dependency-scanner/package-owned-asset-file-path.js.map +1 -1
- package/dependency-scanner/scanner.d.ts +20 -0
- package/dependency-scanner/scanner.d.ts.map +1 -0
- package/dependency-scanner/scanner.js +109 -4
- package/dependency-scanner/scanner.js.map +1 -1
- package/dependency-scanner/source-file-references.d.ts +37 -0
- package/dependency-scanner/source-file-references.d.ts.map +1 -0
- package/dependency-scanner/source-file-references.js +181 -6
- package/dependency-scanner/source-file-references.js.map +1 -1
- package/dependency-scanner/source-map-file-locator.d.ts +10 -0
- package/dependency-scanner/source-map-file-locator.d.ts.map +1 -0
- package/dependency-scanner/source-map-file-locator.js +66 -2
- package/dependency-scanner/source-map-file-locator.js.map +1 -1
- package/dependency-scanner/typescript-compiler-options.d.ts +8 -0
- package/dependency-scanner/typescript-compiler-options.d.ts.map +1 -0
- package/dependency-scanner/typescript-compiler-options.js +21 -1
- package/dependency-scanner/typescript-compiler-options.js.map +1 -1
- package/dependency-scanner/typescript-file-host.d.ts +12 -0
- package/dependency-scanner/typescript-file-host.d.ts.map +1 -0
- package/dependency-scanner/typescript-file-host.js +49 -5
- package/dependency-scanner/typescript-file-host.js.map +1 -1
- package/dependency-scanner/typescript-project-analyzer.d.ts +19 -0
- package/dependency-scanner/typescript-project-analyzer.d.ts.map +1 -0
- package/dependency-scanner/typescript-project-analyzer.js +35 -3
- package/dependency-scanner/typescript-project-analyzer.js.map +1 -1
- package/dependency-scanner/virtual-package-json-host.js +45 -4
- package/dependency-scanner/virtual-package-json-host.js.map +1 -1
- package/directed-graph/graph.d.ts +1 -0
- package/directed-graph/graph.d.ts.map +1 -1
- package/directed-graph/graph.js +240 -1
- package/directed-graph/graph.js.map +1 -1
- package/file-manager/compare.js +23 -2
- package/file-manager/compare.js.map +1 -1
- package/file-manager/equal.js +5 -0
- package/file-manager/equal.js.map +1 -1
- package/file-manager/file-description.d.ts +1 -0
- package/file-manager/file-description.d.ts.map +1 -1
- package/file-manager/file-description.js +3 -0
- package/file-manager/file-description.js.map +1 -1
- package/file-manager/permissions.js +28 -1
- package/file-manager/permissions.js.map +1 -1
- package/git/current-git-head.d.ts +12 -0
- package/git/current-git-head.d.ts.map +1 -0
- package/git/current-git-head.js +24 -0
- package/git/current-git-head.js.map +1 -1
- package/git/git-command.js +49 -1
- package/git/git-command.js.map +1 -1
- package/linker/linked-bundle.d.ts +8 -0
- package/linker/linked-bundle.d.ts.map +1 -1
- package/linker/linked-bundle.js +5 -0
- package/linker/linked-bundle.js.map +1 -1
- package/linker/linker.d.ts +13 -0
- package/linker/linker.d.ts.map +1 -0
- package/linker/linker.js +51 -5
- package/linker/linker.js.map +1 -1
- package/linker/replacement-lookup.js +297 -8
- package/linker/replacement-lookup.js.map +1 -1
- package/linker/resource-graph.js +65 -2
- package/linker/resource-graph.js.map +1 -1
- package/linker/source-modifier/import-paths.js +76 -3
- package/linker/source-modifier/import-paths.js.map +1 -1
- package/linker/substitute-bundles.js +166 -3
- package/linker/substitute-bundles.js.map +1 -1
- package/linker/substituted-resource-graph.js +111 -2
- package/linker/substituted-resource-graph.js.map +1 -1
- package/npm-oidc-id-token-resolver.js +82 -0
- package/npm-oidc-id-token-resolver.js.map +1 -1
- package/pack-emitter/pack-emitter.d.ts +20 -0
- package/pack-emitter/pack-emitter.d.ts.map +1 -1
- package/pack-emitter/pack-emitter.js +27 -0
- package/pack-emitter/pack-emitter.js.map +1 -1
- package/package-surface/bin-field.js +8 -2
- package/package-surface/bin-field.js.map +1 -1
- package/package-surface/explicit-bin.js +24 -2
- package/package-surface/explicit-bin.js.map +1 -1
- package/package-surface/explicit-exports.js +26 -3
- package/package-surface/explicit-exports.js.map +1 -1
- package/package-surface/export-map.js +9 -2
- package/package-surface/export-map.js.map +1 -1
- package/package-surface/implicit-bin.js +25 -1
- package/package-surface/implicit-bin.js.map +1 -1
- package/package-surface/implicit-exports.js +10 -3
- package/package-surface/implicit-exports.js.map +1 -1
- package/package-surface/implicit-root-exports.js +13 -2
- package/package-surface/implicit-root-exports.js.map +1 -1
- package/package-surface/package-json-export.js +9 -0
- package/package-surface/package-json-export.js.map +1 -1
- package/package-surface/package-shape.js +10 -1
- package/package-surface/package-shape.js.map +1 -1
- package/package-surface/package-surface-index.js +165 -3
- package/package-surface/package-surface-index.js.map +1 -1
- package/package-surface/public-module-usage.js +46 -3
- package/package-surface/public-module-usage.js.map +1 -1
- package/package-surface/public-specifiers.js +7 -1
- package/package-surface/public-specifiers.js.map +1 -1
- package/package-surface/root-registry.js +26 -0
- package/package-surface/root-registry.js.map +1 -1
- package/package-surface/specifier-syntax.js +4 -0
- package/package-surface/specifier-syntax.js.map +1 -1
- package/package-surface/substitution-exports.js +101 -3
- package/package-surface/substitution-exports.js.map +1 -1
- package/package-surface/surface.d.ts +2 -0
- package/package-surface/surface.d.ts.map +1 -1
- package/package-surface/surface.js +12 -0
- package/package-surface/surface.js.map +1 -1
- package/package.json +1 -1
- package/packages/package-processor.composition.d.ts +22 -0
- package/packages/package-processor.composition.d.ts.map +1 -1
- package/packages/package-processor.composition.js +161 -34
- package/packages/package-processor.composition.js.map +1 -1
- package/packtory/map-config.d.ts +11 -1
- package/packtory/map-config.d.ts.map +1 -1
- package/packtory/map-config.js +35 -4
- package/packtory/map-config.js.map +1 -1
- package/packtory/normalize-paths.js +25 -1
- package/packtory/normalize-paths.js.map +1 -1
- package/packtory/options/bundle-dependency-resolution.js +17 -1
- package/packtory/options/bundle-dependency-resolution.js.map +1 -1
- package/packtory/options/dead-code-elimination-resolution.js +10 -1
- package/packtory/options/dead-code-elimination-resolution.js.map +1 -1
- package/packtory/options/prepare-package-options.d.ts +13 -1
- package/packtory/options/prepare-package-options.d.ts.map +1 -1
- package/packtory/options/prepare-package-options.js +46 -5
- package/packtory/options/prepare-package-options.js.map +1 -1
- package/packtory/options/required-value-helpers.js +17 -0
- package/packtory/options/required-value-helpers.js.map +1 -1
- package/packtory/options/setting-resolvers.d.ts +17 -1
- package/packtory/options/setting-resolvers.d.ts.map +1 -1
- package/packtory/options/setting-resolvers.js +47 -3
- package/packtory/options/setting-resolvers.js.map +1 -1
- package/packtory/options/surface-resolution.js +15 -2
- package/packtory/options/surface-resolution.js.map +1 -1
- package/packtory/options/version-provider-context.js +24 -2
- package/packtory/options/version-provider-context.js.map +1 -1
- package/packtory/options/version-trigger.js +39 -2
- package/packtory/options/version-trigger.js.map +1 -1
- package/packtory/pack-output-preflight.js +60 -3
- package/packtory/pack-output-preflight.js.map +1 -1
- package/packtory/package-processor-build.js +97 -3
- package/packtory/package-processor-build.js.map +1 -1
- package/packtory/package-processor-publish-result.d.ts +3 -0
- package/packtory/package-processor-publish-result.d.ts.map +1 -1
- package/packtory/package-processor-publish.d.ts +2 -0
- package/packtory/package-processor-publish.d.ts.map +1 -1
- package/packtory/package-processor-publish.js +297 -6
- package/packtory/package-processor-publish.js.map +1 -1
- package/packtory/package-processor.d.ts +34 -0
- package/packtory/package-processor.d.ts.map +1 -1
- package/packtory/package-processor.js +10 -2
- package/packtory/package-processor.js.map +1 -1
- package/packtory/packtory-pack.js +298 -10
- package/packtory/packtory-pack.js.map +1 -1
- package/packtory/packtory-package-dependencies.js +116 -2
- package/packtory/packtory-package-dependencies.js.map +1 -1
- package/packtory/packtory-package-inspection.js +26 -5
- package/packtory/packtory-package-inspection.js.map +1 -1
- package/packtory/packtory-package-side-effects.js +64 -3
- package/packtory/packtory-package-side-effects.js.map +1 -1
- package/packtory/packtory-package-tree.js +43 -4
- package/packtory/packtory-package-tree.js.map +1 -1
- package/packtory/packtory-publish.js +17 -4
- package/packtory/packtory-publish.js.map +1 -1
- package/packtory/packtory-release-analysis.js +64 -6
- package/packtory/packtory-release-analysis.js.map +1 -1
- package/packtory/packtory-release-diff.js +48 -5
- package/packtory/packtory-release-diff.js.map +1 -1
- package/packtory/packtory-release-plan.js +87 -6
- package/packtory/packtory-release-plan.js.map +1 -1
- package/packtory/packtory-resolve.js +16 -5
- package/packtory/packtory-resolve.js.map +1 -1
- package/packtory/packtory.d.ts +28 -1
- package/packtory/packtory.d.ts.map +1 -1
- package/packtory/packtory.js +242 -13
- package/packtory/packtory.js.map +1 -1
- package/packtory/publish-failure-mapping.js +6 -0
- package/packtory/publish-failure-mapping.js.map +1 -1
- package/packtory/publish-target-preflight.js +25 -3
- package/packtory/publish-target-preflight.js.map +1 -1
- package/packtory/published-release-state.d.ts +19 -0
- package/packtory/published-release-state.d.ts.map +1 -1
- package/packtory/published-release-state.js +11 -0
- package/packtory/published-release-state.js.map +1 -1
- package/packtory/release-analysis.js +153 -5
- package/packtory/release-analysis.js.map +1 -1
- package/packtory/release-diff-failure-mapping.js +6 -0
- package/packtory/release-diff-failure-mapping.js.map +1 -1
- package/packtory/release-plan.js +135 -7
- package/packtory/release-plan.js.map +1 -1
- package/packtory/report-attachment.js +35 -2
- package/packtory/report-attachment.js.map +1 -1
- package/packtory/resolved-package.d.ts +11 -0
- package/packtory/resolved-package.d.ts.map +1 -1
- package/packtory/resolved-package.js +97 -3
- package/packtory/resolved-package.js.map +1 -1
- package/packtory/scheduler.d.ts +47 -0
- package/packtory/scheduler.d.ts.map +1 -1
- package/packtory/scheduler.js +99 -1
- package/packtory/scheduler.js.map +1 -1
- package/packtory/stages/package-analysis-stage.js +50 -2
- package/packtory/stages/package-analysis-stage.js.map +1 -1
- package/packtory/stages/package-resolution-stage.js +80 -5
- package/packtory/stages/package-resolution-stage.js.map +1 -1
- package/packtory/stages/publish-stage.js +125 -4
- package/packtory/stages/publish-stage.js.map +1 -1
- package/packtory/stages/release-diff-stage.js +84 -5
- package/packtory/stages/release-diff-stage.js.map +1 -1
- package/progress/progress-broadcaster.d.ts +1 -0
- package/progress/progress-broadcaster.d.ts.map +1 -1
- package/progress/progress-broadcaster.js +45 -0
- package/progress/progress-broadcaster.js.map +1 -1
- package/published-package/published-package.d.ts +2 -0
- package/published-package/published-package.d.ts.map +1 -1
- package/published-package/published-package.js +12 -1
- package/published-package/published-package.js.map +1 -1
- package/report/aggregator/artifact-entry-merger.js +20 -0
- package/report/aggregator/artifact-entry-merger.js.map +1 -1
- package/report/aggregator/package-report-materialization.js +75 -2
- package/report/aggregator/package-report-materialization.js.map +1 -1
- package/report/aggregator/report-aggregator.js +37 -2
- package/report/aggregator/report-aggregator.js.map +1 -1
- package/report/aggregator/report-event-handlers.js +141 -2
- package/report/aggregator/report-event-handlers.js.map +1 -1
- package/report/aggregator/report-types.d.ts +21 -0
- package/report/aggregator/report-types.d.ts.map +1 -1
- package/report/aggregator/report-types.js +3 -0
- package/report/aggregator/report-types.js.map +1 -1
- package/report/config-redactor.js +29 -3
- package/report/config-redactor.js.map +1 -1
- package/report/decorators.js +85 -0
- package/report/decorators.js.map +1 -1
- package/report/inspectors/inspect-artifact-sizes.js +34 -1
- package/report/inspectors/inspect-artifact-sizes.js.map +1 -1
- package/report/inspectors/inspect-linker-rewrites.js +14 -1
- package/report/inspectors/inspect-linker-rewrites.js.map +1 -1
- package/report/inspectors/inspect-package-json-provenance.js +15 -0
- package/report/inspectors/inspect-package-json-provenance.js.map +1 -1
- package/report/inspectors/inspect-scan-results.js +15 -0
- package/report/inspectors/inspect-scan-results.js.map +1 -1
- package/report/release-diff/release-version-transition.js +18 -0
- package/report/release-diff/release-version-transition.js.map +1 -1
- package/resource-resolver/bundle-resource-lookup.js +25 -0
- package/resource-resolver/bundle-resource-lookup.js.map +1 -1
- package/resource-resolver/content.js +136 -4
- package/resource-resolver/content.js.map +1 -1
- package/resource-resolver/dependency-resolution-walker.js +73 -2
- package/resource-resolver/dependency-resolution-walker.js.map +1 -1
- package/resource-resolver/resolved-bundle.d.ts +17 -0
- package/resource-resolver/resolved-bundle.d.ts.map +1 -1
- package/resource-resolver/resolved-bundle.js +3 -0
- package/resource-resolver/resolved-bundle.js.map +1 -1
- package/resource-resolver/resource-resolve-options.d.ts +5 -0
- package/resource-resolver/resource-resolve-options.d.ts.map +1 -1
- package/resource-resolver/resource-resolve-options.js +13 -1
- package/resource-resolver/resource-resolve-options.js.map +1 -1
- package/resource-resolver/resource-resolver.d.ts +15 -0
- package/resource-resolver/resource-resolver.d.ts.map +1 -0
- package/resource-resolver/resource-resolver.js +128 -6
- package/resource-resolver/resource-resolver.js.map +1 -1
- package/sbom/extract-license.js +11 -1
- package/sbom/extract-license.js.map +1 -1
- package/sbom/license-resolver.d.ts +14 -0
- package/sbom/license-resolver.d.ts.map +1 -0
- package/sbom/license-resolver.js +23 -2
- package/sbom/license-resolver.js.map +1 -1
- package/sbom/sbom-builder.js +57 -2
- package/sbom/sbom-builder.js.map +1 -1
- package/sbom/sbom-canonicalizer.js +45 -3
- package/sbom/sbom-canonicalizer.js.map +1 -1
- package/sbom/sbom-file.d.ts +10 -0
- package/sbom/sbom-file.d.ts.map +1 -1
- package/sbom/sbom-file.js +54 -5
- package/sbom/sbom-file.js.map +1 -1
- package/sbom/sbom-serializer.d.ts +8 -0
- package/sbom/sbom-serializer.d.ts.map +1 -0
- package/sbom/sbom-serializer.js +14 -1
- package/sbom/sbom-serializer.js.map +1 -1
- package/sbom/tool-version.js +49 -1
- package/sbom/tool-version.js.map +1 -1
- package/sbom.cdx.json +5 -5
- package/tar/extract-tar.js +83 -3
- package/tar/extract-tar.js.map +1 -1
- package/tar/gzipped-pack.js +20 -0
- package/tar/gzipped-pack.js.map +1 -1
- package/tar/tarball-builder.d.ts +14 -0
- package/tar/tarball-builder.d.ts.map +1 -0
- package/tar/tarball-builder.js +44 -4
- package/tar/tarball-builder.js.map +1 -1
- package/vendor-materializer/vendor-entry.d.ts +12 -0
- package/vendor-materializer/vendor-entry.d.ts.map +1 -0
- package/vendor-materializer/vendor-entry.js +20 -1
- package/vendor-materializer/vendor-entry.js.map +1 -1
- package/vendor-materializer/vendor-materializer.d.ts +55 -0
- package/vendor-materializer/vendor-materializer.d.ts.map +1 -0
- package/vendor-materializer/vendor-materializer.js +240 -8
- package/vendor-materializer/vendor-materializer.js.map +1 -1
- package/version-manager/dependencies/bundle-dependency-grouping.js +32 -2
- package/version-manager/dependencies/bundle-dependency-grouping.js.map +1 -1
- package/version-manager/dependencies/dependency-groups.js +11 -1
- package/version-manager/dependencies/dependency-groups.js.map +1 -1
- package/version-manager/dependencies/external-dependency-classification.js +82 -3
- package/version-manager/dependencies/external-dependency-classification.js.map +1 -1
- package/version-manager/dependencies/versioned-bundle-dependencies.js +8 -3
- package/version-manager/dependencies/versioned-bundle-dependencies.js.map +1 -1
- package/version-manager/imports/hash-import-scanner.js +20 -2
- package/version-manager/imports/hash-import-scanner.js.map +1 -1
- package/version-manager/imports/imports-key-matcher.js +22 -0
- package/version-manager/imports/imports-key-matcher.js.map +1 -1
- package/version-manager/imports/versioned-bundle-imports.js +44 -2
- package/version-manager/imports/versioned-bundle-imports.js.map +1 -1
- package/version-manager/manager.d.ts +5 -0
- package/version-manager/manager.d.ts.map +1 -1
- package/version-manager/manager.js +46 -6
- package/version-manager/manager.js.map +1 -1
- package/version-manager/manifest/builder.js +51 -1
- package/version-manager/manifest/builder.js.map +1 -1
- package/version-manager/manifest/serialize.js +8 -1
- package/version-manager/manifest/serialize.js.map +1 -1
- package/version-manager/optional-bundle-fields.js +5 -1
- package/version-manager/optional-bundle-fields.js.map +1 -1
- package/version-manager/representative-root.js +9 -1
- package/version-manager/representative-root.js.map +1 -1
- package/version-manager/specifier-classifier.js +42 -2
- package/version-manager/specifier-classifier.js.map +1 -1
- package/version-manager/specifier-errors.js +58 -0
- package/version-manager/specifier-errors.js.map +1 -1
- package/version-manager/versioned-bundle.d.ts +3 -1
- package/version-manager/versioned-bundle.d.ts.map +1 -1
- package/version-manager/versioned-bundle.js +31 -6
- package/version-manager/versioned-bundle.js.map +1 -1
- package/zip/zip-builder.d.ts +22 -0
- package/zip/zip-builder.d.ts.map +1 -0
- package/zip/zip-builder.js +81 -2
- package/zip/zip-builder.js.map +1 -1
|
@@ -1,5 +1,137 @@
|
|
|
1
|
-
import 'node:path';
|
|
2
|
-
import "../common/code-files.js";
|
|
3
|
-
import "../common/package-layout.js";
|
|
4
|
-
import "../dependency-scanner/source-file-references.js";
|
|
1
|
+
import path from 'node:path';
|
|
2
|
+
import { isCodeFile } from "../common/code-files.js";
|
|
3
|
+
import { packageManifestFilePath } from "../common/package-layout.js";
|
|
4
|
+
import { moduleReferenceKind } from "../dependency-scanner/source-file-references.js";
|
|
5
|
+
function prependSourcesFolderIfNecessary(sourcesFolder, filePath) {
|
|
6
|
+
if (!path.isAbsolute(filePath)) {
|
|
7
|
+
return path.join(sourcesFolder, filePath);
|
|
8
|
+
}
|
|
9
|
+
return filePath;
|
|
10
|
+
}
|
|
11
|
+
function rejectCodeFile(targetFilePath) {
|
|
12
|
+
if (isCodeFile(targetFilePath)) {
|
|
13
|
+
const errorMessage = [
|
|
14
|
+
`additionalFiles must not include code files; received "${targetFilePath}".`,
|
|
15
|
+
'Code that should ship in the bundle must be reachable from a root so',
|
|
16
|
+
'dependency, side-effect and dead-code analyses can run on it.',
|
|
17
|
+
'If you intend to ship code as a static asset (e.g. a template),',
|
|
18
|
+
'use a non-code extension like .txt.'
|
|
19
|
+
]
|
|
20
|
+
.join(' ');
|
|
21
|
+
throw new Error(errorMessage);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
function rejectGeneratedManifestTarget(targetFilePath) {
|
|
25
|
+
if (targetFilePath === packageManifestFilePath) {
|
|
26
|
+
throw new Error(`additionalFiles must not target generated package manifest "${packageManifestFilePath}".`);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
function rejectAdditionalFileTarget(targetFilePath) {
|
|
30
|
+
rejectGeneratedManifestTarget(targetFilePath);
|
|
31
|
+
rejectCodeFile(targetFilePath);
|
|
32
|
+
}
|
|
33
|
+
function toSourceRelativeTargetPath(sourcesFolder, filePath) {
|
|
34
|
+
const targetFilePath = path.relative(sourcesFolder, filePath);
|
|
35
|
+
if (targetFilePath === packageManifestFilePath ||
|
|
36
|
+
targetFilePath.startsWith('..') ||
|
|
37
|
+
path.isAbsolute(targetFilePath) ||
|
|
38
|
+
targetFilePath.length === 0) {
|
|
39
|
+
throw new Error(`Local file "${filePath}" must resolve to a valid bundle target inside "${sourcesFolder}"`);
|
|
40
|
+
}
|
|
41
|
+
return targetFilePath;
|
|
42
|
+
}
|
|
43
|
+
function targetPathForLocalFile(sourcesFolder, localFile) {
|
|
44
|
+
return localFile.isGeneratedManifest
|
|
45
|
+
? packageManifestFilePath
|
|
46
|
+
: toSourceRelativeTargetPath(sourcesFolder, localFile.filePath);
|
|
47
|
+
}
|
|
48
|
+
function targetPathByInputPathFor(sourcesFolder, localDependencies) {
|
|
49
|
+
return new Map(localDependencies.map(function (localFile) {
|
|
50
|
+
return [localFile.filePath, targetPathForLocalFile(sourcesFolder, localFile)];
|
|
51
|
+
}));
|
|
52
|
+
}
|
|
53
|
+
function requireTargetPath(targetPathByInputPath, inputFilePath) {
|
|
54
|
+
const targetFilePath = targetPathByInputPath.get(inputFilePath);
|
|
55
|
+
if (targetFilePath === undefined) {
|
|
56
|
+
throw new Error(`Resolved local reference "${inputFilePath}" is missing from bundle contents`);
|
|
57
|
+
}
|
|
58
|
+
return targetFilePath;
|
|
59
|
+
}
|
|
60
|
+
function localArtifactReference(type, reference, targetPathByInputPath) {
|
|
61
|
+
return {
|
|
62
|
+
type,
|
|
63
|
+
sourceSpecifier: reference.sourceSpecifier,
|
|
64
|
+
emittedSpecifier: reference.emittedSpecifier,
|
|
65
|
+
targetFilePath: requireTargetPath(targetPathByInputPath, reference.filePath)
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
function artifactModuleReference(reference, targetPathByInputPath) {
|
|
69
|
+
if (reference.kind === moduleReferenceKind.externalPackage) {
|
|
70
|
+
return {
|
|
71
|
+
type: 'external-package',
|
|
72
|
+
sourceSpecifier: reference.sourceSpecifier,
|
|
73
|
+
emittedSpecifier: reference.emittedSpecifier,
|
|
74
|
+
packageName: reference.packageName
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
if (reference.kind === moduleReferenceKind.generatedManifest) {
|
|
78
|
+
return localArtifactReference('generated-manifest', reference, targetPathByInputPath);
|
|
79
|
+
}
|
|
80
|
+
if (reference.kind === moduleReferenceKind.localAsset) {
|
|
81
|
+
return localArtifactReference('local-asset', reference, targetPathByInputPath);
|
|
82
|
+
}
|
|
83
|
+
return localArtifactReference('local-code', reference, targetPathByInputPath);
|
|
84
|
+
}
|
|
85
|
+
function artifactModuleReferences(references, targetPathByInputPath) {
|
|
86
|
+
return references.map(function (reference) {
|
|
87
|
+
return artifactModuleReference(reference, targetPathByInputPath);
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
function directDependencyTargets(localFile, targetPathByInputPath) {
|
|
91
|
+
return new Set(Array.from(localFile.directDependencies, function (inputFilePath) {
|
|
92
|
+
return requireTargetPath(targetPathByInputPath, inputFilePath);
|
|
93
|
+
}));
|
|
94
|
+
}
|
|
95
|
+
export function combineAllBundleFiles(sourcesFolder, localDependencies, additionalFiles) {
|
|
96
|
+
const targetPathByInputPath = targetPathByInputPathFor(sourcesFolder, localDependencies);
|
|
97
|
+
const resolvedLocalFiles = localDependencies.map(function (localFile) {
|
|
98
|
+
const targetFilePath = targetPathForLocalFile(sourcesFolder, localFile);
|
|
99
|
+
const resolvedBundleFile = {
|
|
100
|
+
inputFilePath: localFile.filePath,
|
|
101
|
+
targetFilePath,
|
|
102
|
+
directDependencies: directDependencyTargets(localFile, targetPathByInputPath),
|
|
103
|
+
moduleReferences: artifactModuleReferences(localFile.moduleReferences, targetPathByInputPath),
|
|
104
|
+
...localFile.project === undefined ? {} : { project: localFile.project },
|
|
105
|
+
isExplicitlyIncluded: false,
|
|
106
|
+
...localFile.isGeneratedManifest ? { isGeneratedManifest: true } : {}
|
|
107
|
+
};
|
|
108
|
+
return resolvedBundleFile;
|
|
109
|
+
});
|
|
110
|
+
const additionalContents = additionalFiles.map(function (additionalFile) {
|
|
111
|
+
if (typeof additionalFile === 'string') {
|
|
112
|
+
rejectAdditionalFileTarget(additionalFile);
|
|
113
|
+
const inputFilePath = path.join(sourcesFolder, additionalFile);
|
|
114
|
+
const targetFilePath = additionalFile;
|
|
115
|
+
return {
|
|
116
|
+
inputFilePath,
|
|
117
|
+
targetFilePath,
|
|
118
|
+
directDependencies: new Set(),
|
|
119
|
+
moduleReferences: [],
|
|
120
|
+
isExplicitlyIncluded: true
|
|
121
|
+
};
|
|
122
|
+
}
|
|
123
|
+
if (path.isAbsolute(additionalFile.targetFilePath)) {
|
|
124
|
+
throw new Error('The targetFilePath must be relative');
|
|
125
|
+
}
|
|
126
|
+
rejectAdditionalFileTarget(additionalFile.targetFilePath);
|
|
127
|
+
return {
|
|
128
|
+
inputFilePath: prependSourcesFolderIfNecessary(sourcesFolder, additionalFile.inputFilePath),
|
|
129
|
+
targetFilePath: additionalFile.targetFilePath,
|
|
130
|
+
directDependencies: new Set(),
|
|
131
|
+
moduleReferences: [],
|
|
132
|
+
isExplicitlyIncluded: true
|
|
133
|
+
};
|
|
134
|
+
});
|
|
135
|
+
return [...resolvedLocalFiles, ...additionalContents];
|
|
136
|
+
}
|
|
5
137
|
//# sourceMappingURL=content.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"content.js","sourceRoot":"","sources":["../../../../source/resource-resolver/content.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"content.js","sourceRoot":"","sources":["../../../../source/resource-resolver/content.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,WAAW,CAAC;AAE7B,OAAO,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AACrD,OAAO,EAAE,uBAAuB,EAAE,MAAM,6BAA6B,CAAC;AAGtE,OAAO,EAAE,mBAAmB,EAAwB,MAAM,iDAAiD,CAAC;AAG5G,SAAS,+BAA+B,CAAC,aAAqB,EAAE,QAAgB;IAC5E,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,CAAC;QAC7B,OAAO,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;IAC9C,CAAC;IAED,OAAO,QAAQ,CAAC;AACpB,CAAC;AAED,SAAS,cAAc,CAAC,cAAsB;IAC1C,IAAI,UAAU,CAAC,cAAc,CAAC,EAAE,CAAC;QAC7B,MAAM,YAAY,GAAG;YACjB,0DAA0D,cAAc,IAAI;YAC5E,sEAAsE;YACtE,+DAA+D;YAC/D,iEAAiE;YACjE,qCAAqC;SACxC;aACI,IAAI,CAAC,GAAG,CAAC,CAAC;QACf,MAAM,IAAI,KAAK,CAAC,YAAY,CAAC,CAAC;IAClC,CAAC;AACL,CAAC;AAED,SAAS,6BAA6B,CAAC,cAAsB;IACzD,IAAI,cAAc,KAAK,uBAAuB,EAAE,CAAC;QAC7C,MAAM,IAAI,KAAK,CAAC,+DAA+D,uBAAuB,IAAI,CAAC,CAAC;IAChH,CAAC;AACL,CAAC;AAED,SAAS,0BAA0B,CAAC,cAAsB;IACtD,6BAA6B,CAAC,cAAc,CAAC,CAAC;IAC9C,cAAc,CAAC,cAAc,CAAC,CAAC;AACnC,CAAC;AAYD,SAAS,0BAA0B,CAAC,aAAqB,EAAE,QAAgB;IACvE,MAAM,cAAc,GAAG,IAAI,CAAC,QAAQ,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;IAC9D,IACI,cAAc,KAAK,uBAAuB;QAC1C,cAAc,CAAC,UAAU,CAAC,IAAI,CAAC;QAC/B,IAAI,CAAC,UAAU,CAAC,cAAc,CAAC;QAC/B,cAAc,CAAC,MAAM,KAAK,CAAC,EAC7B,CAAC;QACC,MAAM,IAAI,KAAK,CAAC,eAAe,QAAQ,mDAAmD,aAAa,GAAG,CAAC,CAAC;IAChH,CAAC;IAED,OAAO,cAAc,CAAC;AAC1B,CAAC;AAED,SAAS,sBAAsB,CAAC,aAAqB,EAAE,SAAoB;IACvE,OAAO,SAAS,CAAC,mBAAmB;QAChC,CAAC,CAAC,uBAAuB;QACzB,CAAC,CAAC,0BAA0B,CAAC,aAAa,EAAE,SAAS,CAAC,QAAQ,CAAC,CAAC;AACxE,CAAC;AAED,SAAS,wBAAwB,CAC7B,aAAqB,EACrB,iBAAuC;IAEvC,OAAO,IAAI,GAAG,CACV,iBAAiB,CAAC,GAAG,CAAC,UAAU,SAAS;QACrC,OAAO,CAAE,SAAS,CAAC,QAAQ,EAAE,sBAAsB,CAAC,aAAa,EAAE,SAAS,CAAC,CAAE,CAAC;IACpF,CAAC,CAAC,CACL,CAAC;AACN,CAAC;AAED,SAAS,iBAAiB,CACtB,qBAAkD,EAClD,aAAqB;IAErB,MAAM,cAAc,GAAG,qBAAqB,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC;IAChE,IAAI,cAAc,KAAK,SAAS,EAAE,CAAC;QAC/B,MAAM,IAAI,KAAK,CAAC,6BAA6B,aAAa,mCAAmC,CAAC,CAAC;IACnG,CAAC;IACD,OAAO,cAAc,CAAC;AAC1B,CAAC;AAED,SAAS,sBAAsB,CAC3B,IAAyD,EACzD,SAA4G,EAC5G,qBAAkD;IAElD,OAAO;QACH,IAAI;QACJ,eAAe,EAAE,SAAS,CAAC,eAAe;QAC1C,gBAAgB,EAAE,SAAS,CAAC,gBAAgB;QAC5C,cAAc,EAAE,iBAAiB,CAAC,qBAAqB,EAAE,SAAS,CAAC,QAAQ,CAAC;KAC/E,CAAC;AACN,CAAC;AAED,SAAS,uBAAuB,CAC5B,SAA0B,EAC1B,qBAAkD;IAElD,IAAI,SAAS,CAAC,IAAI,KAAK,mBAAmB,CAAC,eAAe,EAAE,CAAC;QACzD,OAAO;YACH,IAAI,EAAE,kBAAkB;YACxB,eAAe,EAAE,SAAS,CAAC,eAAe;YAC1C,gBAAgB,EAAE,SAAS,CAAC,gBAAgB;YAC5C,WAAW,EAAE,SAAS,CAAC,WAAW;SACrC,CAAC;IACN,CAAC;IACD,IAAI,SAAS,CAAC,IAAI,KAAK,mBAAmB,CAAC,iBAAiB,EAAE,CAAC;QAC3D,OAAO,sBAAsB,CAAC,oBAAoB,EAAE,SAAS,EAAE,qBAAqB,CAAC,CAAC;IAC1F,CAAC;IACD,IAAI,SAAS,CAAC,IAAI,KAAK,mBAAmB,CAAC,UAAU,EAAE,CAAC;QACpD,OAAO,sBAAsB,CAAC,aAAa,EAAE,SAAS,EAAE,qBAAqB,CAAC,CAAC;IACnF,CAAC;IACD,OAAO,sBAAsB,CAAC,YAAY,EAAE,SAAS,EAAE,qBAAqB,CAAC,CAAC;AAClF,CAAC;AAED,SAAS,wBAAwB,CAC7B,UAAsC,EACtC,qBAAkD;IAElD,OAAO,UAAU,CAAC,GAAG,CAAC,UAAU,SAAS;QACrC,OAAO,uBAAuB,CAAC,SAAS,EAAE,qBAAqB,CAAC,CAAC;IACrE,CAAC,CAAC,CAAC;AACP,CAAC;AAED,SAAS,uBAAuB,CAC5B,SAAoB,EACpB,qBAAkD;IAElD,OAAO,IAAI,GAAG,CACV,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,kBAAkB,EAAE,UAAU,aAAa;QAC5D,OAAO,iBAAiB,CAAC,qBAAqB,EAAE,aAAa,CAAC,CAAC;IACnE,CAAC,CAAC,CACL,CAAC;AACN,CAAC;AAED,MAAM,UAAU,qBAAqB,CACjC,aAAqB,EACrB,iBAAuC,EACvC,eAAgE;IAEhE,MAAM,qBAAqB,GAAG,wBAAwB,CAAC,aAAa,EAAE,iBAAiB,CAAC,CAAC;IACzF,MAAM,kBAAkB,GAAG,iBAAiB,CAAC,GAAG,CAAC,UAAU,SAAS;QAChE,MAAM,cAAc,GAAG,sBAAsB,CAAC,aAAa,EAAE,SAAS,CAAC,CAAC;QACxE,MAAM,kBAAkB,GAAuB;YAC3C,aAAa,EAAE,SAAS,CAAC,QAAQ;YACjC,cAAc;YACd,kBAAkB,EAAE,uBAAuB,CAAC,SAAS,EAAE,qBAAqB,CAAC;YAC7E,gBAAgB,EAAE,wBAAwB,CAAC,SAAS,CAAC,gBAAgB,EAAE,qBAAqB,CAAC;YAC7F,GAAG,SAAS,CAAC,OAAO,KAAK,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,SAAS,CAAC,OAAO,EAAE;YACxE,oBAAoB,EAAE,KAAK;YAC3B,GAAG,SAAS,CAAC,mBAAmB,CAAC,CAAC,CAAC,EAAE,mBAAmB,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC,EAAE;SACxE,CAAC;QACF,OAAO,kBAAkB,CAAC;IAC9B,CAAC,CAAC,CAAC;IAEH,MAAM,kBAAkB,GAAG,eAAe,CAAC,GAAG,CAAC,UAAU,cAAc;QACnE,IAAI,OAAO,cAAc,KAAK,QAAQ,EAAE,CAAC;YACrC,0BAA0B,CAAC,cAAc,CAAC,CAAC;YAC3C,MAAM,aAAa,GAAG,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,cAAc,CAAC,CAAC;YAC/D,MAAM,cAAc,GAAG,cAAc,CAAC;YACtC,OAAO;gBACH,aAAa;gBACb,cAAc;gBACd,kBAAkB,EAAE,IAAI,GAAG,EAAE;gBAC7B,gBAAgB,EAAE,EAAE;gBACpB,oBAAoB,EAAE,IAAI;aAC7B,CAAC;QACN,CAAC;QAED,IAAI,IAAI,CAAC,UAAU,CAAC,cAAc,CAAC,cAAc,CAAC,EAAE,CAAC;YACjD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;QAC3D,CAAC;QACD,0BAA0B,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC;QAE1D,OAAO;YACH,aAAa,EAAE,+BAA+B,CAAC,aAAa,EAAE,cAAc,CAAC,aAAa,CAAC;YAC3F,cAAc,EAAE,cAAc,CAAC,cAAc;YAC7C,kBAAkB,EAAE,IAAI,GAAG,EAAE;YAC7B,gBAAgB,EAAE,EAAE;YACpB,oBAAoB,EAAE,IAAI;SAC7B,CAAC;IACN,CAAC,CAAC,CAAC;IAEH,OAAO,CAAE,GAAG,kBAAkB,EAAE,GAAG,kBAAkB,CAAE,CAAC;AAC5D,CAAC"}
|
|
@@ -1,3 +1,74 @@
|
|
|
1
|
-
import "../dependency-scanner/dependency-graph.js";
|
|
2
|
-
import "./resource-resolve-options.js";
|
|
1
|
+
import { mergeDependencyFiles } from "../dependency-scanner/dependency-graph.js";
|
|
2
|
+
import { resolveRootsAndSurface } from "./resource-resolve-options.js";
|
|
3
|
+
function emptyDependencyFiles() {
|
|
4
|
+
return { externalDependencies: new Map(), localFiles: [] };
|
|
5
|
+
}
|
|
6
|
+
async function scanDeclarationGraph(dependencies, options, entryFiles, scannedDeclarationFiles) {
|
|
7
|
+
const pendingEntryFiles = entryFiles.filter(function (entryFile) {
|
|
8
|
+
return !scannedDeclarationFiles.has(entryFile);
|
|
9
|
+
});
|
|
10
|
+
if (pendingEntryFiles.length === 0) {
|
|
11
|
+
return emptyDependencyFiles();
|
|
12
|
+
}
|
|
13
|
+
pendingEntryFiles.forEach(function (entryFile) {
|
|
14
|
+
scannedDeclarationFiles.record(entryFile);
|
|
15
|
+
});
|
|
16
|
+
const declarationDependencyGraph = await dependencies.dependencyScanner.scanEntries(pendingEntryFiles, options.sourcesFolder, {
|
|
17
|
+
includeSourceMapFiles: options.includeSourceMapFiles,
|
|
18
|
+
resolveDeclarationFiles: true,
|
|
19
|
+
mainPackageJson: options.mainPackageJson
|
|
20
|
+
});
|
|
21
|
+
return pendingEntryFiles.reduce(function (result, entryFile) {
|
|
22
|
+
return mergeDependencyFiles(result, declarationDependencyGraph.flatten(entryFile));
|
|
23
|
+
}, emptyDependencyFiles());
|
|
24
|
+
}
|
|
25
|
+
function createDeclarationScanTracker() {
|
|
26
|
+
const scannedDeclarationFiles = new Set();
|
|
27
|
+
return {
|
|
28
|
+
has(filePath) {
|
|
29
|
+
return scannedDeclarationFiles.has(filePath);
|
|
30
|
+
},
|
|
31
|
+
record(filePath) {
|
|
32
|
+
scannedDeclarationFiles.add(filePath);
|
|
33
|
+
}
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
async function resolveJsDependencies(context, root) {
|
|
37
|
+
const { dependencies, options } = context;
|
|
38
|
+
const { sourcesFolder, includeSourceMapFiles, mainPackageJson } = options;
|
|
39
|
+
const jsDependencyGraph = await dependencies.dependencyScanner.scan(root.js, sourcesFolder, {
|
|
40
|
+
includeSourceMapFiles,
|
|
41
|
+
resolveDeclarationFiles: false,
|
|
42
|
+
mainPackageJson
|
|
43
|
+
});
|
|
44
|
+
return jsDependencyGraph.flatten(root.js);
|
|
45
|
+
}
|
|
46
|
+
async function resolveRootDeclarationDependencies(context, root) {
|
|
47
|
+
const entryFiles = [];
|
|
48
|
+
if (root.declarationFile !== undefined) {
|
|
49
|
+
entryFiles.push(root.declarationFile);
|
|
50
|
+
}
|
|
51
|
+
return scanDeclarationGraph(context.dependencies, context.options, entryFiles, context.scannedDeclarationFiles);
|
|
52
|
+
}
|
|
53
|
+
async function resolveDependenciesForRoot(context, root) {
|
|
54
|
+
const jsDependencies = await resolveJsDependencies(context, root);
|
|
55
|
+
const declarationDependencies = await resolveRootDeclarationDependencies(context, root);
|
|
56
|
+
return mergeDependencyFiles(jsDependencies, declarationDependencies);
|
|
57
|
+
}
|
|
58
|
+
export async function resolveDependenciesForAllRoots(dependencies, options, promotedDeclarationEntryFiles) {
|
|
59
|
+
const { roots } = resolveRootsAndSurface(options);
|
|
60
|
+
const rootValues = Object.values(roots);
|
|
61
|
+
const context = {
|
|
62
|
+
dependencies,
|
|
63
|
+
options,
|
|
64
|
+
scannedDeclarationFiles: createDeclarationScanTracker()
|
|
65
|
+
};
|
|
66
|
+
let dependencyFiles = emptyDependencyFiles();
|
|
67
|
+
for (const root of rootValues) {
|
|
68
|
+
dependencyFiles = mergeDependencyFiles(dependencyFiles, await resolveDependenciesForRoot(context, root));
|
|
69
|
+
}
|
|
70
|
+
const promotedDeclarationDependencies = await scanDeclarationGraph(dependencies, options, promotedDeclarationEntryFiles, context.scannedDeclarationFiles);
|
|
71
|
+
dependencyFiles = mergeDependencyFiles(dependencyFiles, promotedDeclarationDependencies);
|
|
72
|
+
return dependencyFiles;
|
|
73
|
+
}
|
|
3
74
|
//# sourceMappingURL=dependency-resolution-walker.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dependency-resolution-walker.js","sourceRoot":"","sources":["../../../../source/resource-resolver/dependency-resolution-walker.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"dependency-resolution-walker.js","sourceRoot":"","sources":["../../../../source/resource-resolver/dependency-resolution-walker.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
+
import type { Project } from 'ts-morph';
|
|
2
|
+
import type { ExternalDependencies } from '../dependency-scanner/external-dependencies.ts';
|
|
1
3
|
import type { TransferableFileDescription } from '../file-manager/file-description.ts';
|
|
4
|
+
import type { PackageSurface } from '../package-surface/surface.ts';
|
|
2
5
|
type ExternalPackageArtifactModuleReference = {
|
|
3
6
|
readonly type: 'external-package';
|
|
4
7
|
readonly sourceSpecifier: string;
|
|
@@ -41,9 +44,23 @@ export type BundleResource = {
|
|
|
41
44
|
readonly isExplicitlyIncluded: boolean;
|
|
42
45
|
readonly isGeneratedManifest?: true | undefined;
|
|
43
46
|
};
|
|
47
|
+
export type ResolvedContent = BundleResource & {
|
|
48
|
+
readonly project?: Project | undefined;
|
|
49
|
+
};
|
|
44
50
|
export type RootFileDescription = {
|
|
45
51
|
readonly js: TransferableFileDescription;
|
|
46
52
|
readonly declarationFile?: TransferableFileDescription | undefined;
|
|
47
53
|
};
|
|
54
|
+
export type ResolvedBundle = {
|
|
55
|
+
readonly contents: readonly ResolvedContent[];
|
|
56
|
+
readonly roots: Readonly<Record<string, RootFileDescription>>;
|
|
57
|
+
readonly surface: PackageSurface;
|
|
58
|
+
readonly name: string;
|
|
59
|
+
readonly exportPackageJson?: true | undefined;
|
|
60
|
+
readonly externalDependencies: ExternalDependencies;
|
|
61
|
+
};
|
|
62
|
+
export declare function rootHasDeclarationFile(root: RootFileDescription): root is RootFileDescription & {
|
|
63
|
+
readonly declarationFile: TransferableFileDescription;
|
|
64
|
+
};
|
|
48
65
|
export {};
|
|
49
66
|
//# sourceMappingURL=resolved-bundle.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resolved-bundle.d.ts","sourceRoot":"","sources":["../../../../source/resource-resolver/resolved-bundle.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"resolved-bundle.d.ts","sourceRoot":"","sources":["../../../../source/resource-resolver/resolved-bundle.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resolved-bundle.js","sourceRoot":"","sources":["../../../../source/resource-resolver/resolved-bundle.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"resolved-bundle.js","sourceRoot":"","sources":["../../../../source/resource-resolver/resolved-bundle.ts"],"names":[],"mappings":"AA2EA,MAAM,UAAU,sBAAsB,CAClC,IAAyB;IAEzB,OAAO,IAAI,CAAC,eAAe,KAAK,SAAS,CAAC;AAC9C,CAAC"}
|
|
@@ -13,5 +13,10 @@ export type ResourceResolveOptions = {
|
|
|
13
13
|
readonly roots: Roots;
|
|
14
14
|
readonly surface?: PackageSurface | undefined;
|
|
15
15
|
};
|
|
16
|
+
export type ResolvedRootsAndSurface = {
|
|
17
|
+
readonly roots: Roots;
|
|
18
|
+
readonly surface: PackageSurface;
|
|
19
|
+
};
|
|
20
|
+
export declare function resolveRootsAndSurface(options: ResourceResolveOptions): ResolvedRootsAndSurface;
|
|
16
21
|
export {};
|
|
17
22
|
//# sourceMappingURL=resource-resolve-options.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resource-resolve-options.d.ts","sourceRoot":"","sources":["../../../../source/resource-resolver/resource-resolve-options.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,+BAA+B,CAAC;AAC/E,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AACjE,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAA0B,KAAK,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAE5F,KAAK,KAAK,GAAG,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC,CAAC;AAE5C,MAAM,MAAM,sBAAsB,GAAG;IACjC,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAC;IAC/B,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,iBAAiB,CAAC,EAAE,IAAI,GAAG,SAAS,CAAC;IAC9C,QAAQ,CAAC,qBAAqB,EAAE,OAAO,CAAC;IACxC,QAAQ,CAAC,eAAe,EAAE,SAAS,CAAC,yBAAyB,GAAG,MAAM,CAAC,EAAE,CAAC;IAC1E,QAAQ,CAAC,eAAe,EAAE,eAAe,CAAC;IAC1C,QAAQ,CAAC,KAAK,EAAE,KAAK,CAAC;IACtB,QAAQ,CAAC,OAAO,CAAC,EAAE,cAAc,GAAG,SAAS,CAAC;CACjD,CAAC;AAEF,MAAM,
|
|
1
|
+
{"version":3,"file":"resource-resolve-options.d.ts","sourceRoot":"","sources":["../../../../source/resource-resolver/resource-resolve-options.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,+BAA+B,CAAC;AAC/E,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AACjE,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAA0B,KAAK,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAE5F,KAAK,KAAK,GAAG,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC,CAAC;AAE5C,MAAM,MAAM,sBAAsB,GAAG;IACjC,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAC;IAC/B,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,iBAAiB,CAAC,EAAE,IAAI,GAAG,SAAS,CAAC;IAC9C,QAAQ,CAAC,qBAAqB,EAAE,OAAO,CAAC;IACxC,QAAQ,CAAC,eAAe,EAAE,SAAS,CAAC,yBAAyB,GAAG,MAAM,CAAC,EAAE,CAAC;IAC1E,QAAQ,CAAC,eAAe,EAAE,eAAe,CAAC;IAC1C,QAAQ,CAAC,KAAK,EAAE,KAAK,CAAC;IACtB,QAAQ,CAAC,OAAO,CAAC,EAAE,cAAc,GAAG,SAAS,CAAC;CACjD,CAAC;AAEF,MAAM,MAAM,uBAAuB,GAAG;IAClC,QAAQ,CAAC,KAAK,EAAE,KAAK,CAAC;IACtB,QAAQ,CAAC,OAAO,EAAE,cAAc,CAAC;CACpC,CAAC;AAEF,wBAAgB,sBAAsB,CAAC,OAAO,EAAE,sBAAsB,GAAG,uBAAuB,CAY/F"}
|
|
@@ -1,2 +1,14 @@
|
|
|
1
|
-
import "../package-surface/surface.js";
|
|
1
|
+
import { implicitPackageSurface } from "../package-surface/surface.js";
|
|
2
|
+
export function resolveRootsAndSurface(options) {
|
|
3
|
+
const rootEntries = Object.entries(options.roots);
|
|
4
|
+
const [firstRootEntry] = rootEntries;
|
|
5
|
+
if (firstRootEntry === undefined) {
|
|
6
|
+
throw new Error(`Package "${options.name}" must define at least one root`);
|
|
7
|
+
}
|
|
8
|
+
const [firstRootId] = firstRootEntry;
|
|
9
|
+
return {
|
|
10
|
+
roots: options.roots,
|
|
11
|
+
surface: options.surface ?? implicitPackageSurface(firstRootId)
|
|
12
|
+
};
|
|
13
|
+
}
|
|
2
14
|
//# sourceMappingURL=resource-resolve-options.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resource-resolve-options.js","sourceRoot":"","sources":["../../../../source/resource-resolver/resource-resolve-options.ts"],"names":[],"mappings":"AAGA,
|
|
1
|
+
{"version":3,"file":"resource-resolve-options.js","sourceRoot":"","sources":["../../../../source/resource-resolver/resource-resolve-options.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,sBAAsB,EAAuB,MAAM,+BAA+B,CAAC;AAoB5F,MAAM,UAAU,sBAAsB,CAAC,OAA+B;IAClE,MAAM,WAAW,GAAG,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;IAClD,MAAM,CAAE,cAAc,CAAE,GAAG,WAAW,CAAC;IACvC,IAAI,cAAc,KAAK,SAAS,EAAE,CAAC;QAC/B,MAAM,IAAI,KAAK,CAAC,YAAY,OAAO,CAAC,IAAI,iCAAiC,CAAC,CAAC;IAC/E,CAAC;IAED,MAAM,CAAE,WAAW,CAAE,GAAG,cAAc,CAAC;IACvC,OAAO;QACH,KAAK,EAAE,OAAO,CAAC,KAAK;QACpB,OAAO,EAAE,OAAO,CAAC,OAAO,IAAI,sBAAsB,CAAC,WAAW,CAAC;KAClE,CAAC;AACN,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { DependencyScanner } from '../dependency-scanner/scanner.ts';
|
|
2
|
+
import type { FileManager } from '../file-manager/file-manager.ts';
|
|
3
|
+
import type { ResolvedBundle } from './resolved-bundle.ts';
|
|
4
|
+
import { type ResourceResolveOptions } from './resource-resolve-options.ts';
|
|
5
|
+
export type ResourceResolverDependencies = {
|
|
6
|
+
readonly dependencyScanner: DependencyScanner;
|
|
7
|
+
readonly fileManager: FileManager;
|
|
8
|
+
};
|
|
9
|
+
export type ResourceResolver = {
|
|
10
|
+
resolve: (options: ResourceResolveOptions) => Promise<ResolvedBundle>;
|
|
11
|
+
resolveWithPromotedDeclarations: (options: ResourceResolveOptions, promotedDeclarationEntryFiles: readonly string[]) => Promise<ResolvedBundle>;
|
|
12
|
+
resolveWithPromotedDeclarationCompanions: (options: ResourceResolveOptions, substitutedInputFilePaths: ReadonlySet<string>) => Promise<ResolvedBundle>;
|
|
13
|
+
};
|
|
14
|
+
export declare function createResourceResolver(dependencies: ResourceResolverDependencies): ResourceResolver;
|
|
15
|
+
//# sourceMappingURL=resource-resolver.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resource-resolver.d.ts","sourceRoot":"","sources":["../../../../source/resource-resolver/resource-resolver.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AAO1E,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,iCAAiC,CAAC;AAKnE,OAAO,KAAK,EAAE,cAAc,EAAmB,MAAM,sBAAsB,CAAC;AAC5E,OAAO,EAA0B,KAAK,sBAAsB,EAAE,MAAM,+BAA+B,CAAC;AAEpG,MAAM,MAAM,4BAA4B,GAAG;IACvC,QAAQ,CAAC,iBAAiB,EAAE,iBAAiB,CAAC;IAC9C,QAAQ,CAAC,WAAW,EAAE,WAAW,CAAC;CACrC,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG;IAC3B,OAAO,EAAE,CAAC,OAAO,EAAE,sBAAsB,KAAK,OAAO,CAAC,cAAc,CAAC,CAAC;IACtE,+BAA+B,EAAE,CAC7B,OAAO,EAAE,sBAAsB,EAC/B,6BAA6B,EAAE,SAAS,MAAM,EAAE,KAC/C,OAAO,CAAC,cAAc,CAAC,CAAC;IAC7B,wCAAwC,EAAE,CACtC,OAAO,EAAE,sBAAsB,EAC/B,yBAAyB,EAAE,WAAW,CAAC,MAAM,CAAC,KAC7C,OAAO,CAAC,cAAc,CAAC,CAAC;CAChC,CAAC;AAmIF,wBAAgB,sBAAsB,CAAC,YAAY,EAAE,4BAA4B,GAAG,gBAAgB,CAmEnG"}
|
|
@@ -1,7 +1,129 @@
|
|
|
1
|
-
import "../dependency-scanner/external-dependencies.js";
|
|
2
|
-
import "../common/declaration-companion-paths.js";
|
|
3
|
-
import "./content.js";
|
|
4
|
-
import "./bundle-resource-lookup.js";
|
|
5
|
-
import "./dependency-resolution-walker.js";
|
|
6
|
-
import "./resource-resolve-options.js";
|
|
1
|
+
import { mergeExternalDependencyReference } from "../dependency-scanner/external-dependencies.js";
|
|
2
|
+
import { declarationCompanionCandidates } from "../common/declaration-companion-paths.js";
|
|
3
|
+
import { combineAllBundleFiles } from "./content.js";
|
|
4
|
+
import { buildResolvedRoots } from "./bundle-resource-lookup.js";
|
|
5
|
+
import { resolveDependenciesForAllRoots } from "./dependency-resolution-walker.js";
|
|
6
|
+
import { resolveRootsAndSurface } from "./resource-resolve-options.js";
|
|
7
|
+
const packageJsonIndentationSpaces = 4;
|
|
8
|
+
function serializeVirtualManifest(mainPackageJson) {
|
|
9
|
+
return `${JSON.stringify(mainPackageJson, null, packageJsonIndentationSpaces)}\n`;
|
|
10
|
+
}
|
|
11
|
+
function hasDeclarationRoots(options) {
|
|
12
|
+
const normalized = resolveRootsAndSurface(options);
|
|
13
|
+
return Object.values(normalized.roots).some(function (root) {
|
|
14
|
+
return root.declarationFile !== undefined;
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
async function findReadableDeclarationCompanion(fileManager, inputFilePath) {
|
|
18
|
+
for (const candidate of declarationCompanionCandidates(inputFilePath)) {
|
|
19
|
+
const readability = await fileManager.checkReadability(candidate);
|
|
20
|
+
if (readability.isReadable) {
|
|
21
|
+
return candidate;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
return undefined;
|
|
25
|
+
}
|
|
26
|
+
async function findReadableDeclarationCompanions(fileManager, substitutedInputFilePaths) {
|
|
27
|
+
const companions = [];
|
|
28
|
+
for (const inputFilePath of substitutedInputFilePaths) {
|
|
29
|
+
const companion = await findReadableDeclarationCompanion(fileManager, inputFilePath);
|
|
30
|
+
if (companion !== undefined) {
|
|
31
|
+
companions.push(companion);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
return companions;
|
|
35
|
+
}
|
|
36
|
+
async function resolveFileDescription(fileManager, bundleFile, mainPackageJson) {
|
|
37
|
+
if (bundleFile.isGeneratedManifest) {
|
|
38
|
+
return {
|
|
39
|
+
content: serializeVirtualManifest(mainPackageJson),
|
|
40
|
+
isExecutable: false,
|
|
41
|
+
inputFilePath: bundleFile.inputFilePath,
|
|
42
|
+
targetFilePath: bundleFile.targetFilePath
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
return await fileManager.getTransferableFileDescriptionFromPath(bundleFile.inputFilePath, bundleFile.targetFilePath);
|
|
46
|
+
}
|
|
47
|
+
function targetPathByInputPath(resources) {
|
|
48
|
+
return new Map(resources.map(function (resource) {
|
|
49
|
+
return [resource.fileDescription.inputFilePath, resource.fileDescription.targetFilePath];
|
|
50
|
+
}));
|
|
51
|
+
}
|
|
52
|
+
function targetFilePathFor(targetByInputPath, inputFilePath) {
|
|
53
|
+
return targetByInputPath.get(inputFilePath) ?? inputFilePath;
|
|
54
|
+
}
|
|
55
|
+
function dependencySpecifierReferences(dependency) {
|
|
56
|
+
if (dependency.references !== undefined) {
|
|
57
|
+
return dependency.references.map(function (reference) {
|
|
58
|
+
return {
|
|
59
|
+
name: dependency.name,
|
|
60
|
+
targetFilePath: reference.targetFilePath,
|
|
61
|
+
sourceSpecifier: reference.sourceSpecifier,
|
|
62
|
+
emittedSpecifier: reference.emittedSpecifier
|
|
63
|
+
};
|
|
64
|
+
});
|
|
65
|
+
}
|
|
66
|
+
return dependency.referencedFrom.map(function (targetFilePath) {
|
|
67
|
+
return {
|
|
68
|
+
name: dependency.name,
|
|
69
|
+
targetFilePath,
|
|
70
|
+
sourceSpecifier: dependency.name,
|
|
71
|
+
emittedSpecifier: dependency.name
|
|
72
|
+
};
|
|
73
|
+
});
|
|
74
|
+
}
|
|
75
|
+
function externalDependenciesWithTargetPaths(dependencies, targetByInputPath) {
|
|
76
|
+
const dependenciesByName = new Map();
|
|
77
|
+
for (const dependency of dependencies.values()) {
|
|
78
|
+
for (const reference of dependencySpecifierReferences(dependency)) {
|
|
79
|
+
const existing = dependenciesByName.get(reference.name);
|
|
80
|
+
dependenciesByName.set(reference.name, mergeExternalDependencyReference({
|
|
81
|
+
name: reference.name,
|
|
82
|
+
sourceSpecifier: reference.sourceSpecifier,
|
|
83
|
+
emittedSpecifier: reference.emittedSpecifier
|
|
84
|
+
}, targetFilePathFor(targetByInputPath, reference.targetFilePath), existing));
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
return dependenciesByName;
|
|
88
|
+
}
|
|
89
|
+
export function createResourceResolver(dependencies) {
|
|
90
|
+
const { dependencyScanner, fileManager } = dependencies;
|
|
91
|
+
async function resolveWithPromotedDeclarations(options, promotedDeclarationEntryFiles) {
|
|
92
|
+
const normalized = resolveRootsAndSurface(options);
|
|
93
|
+
const resolvedDependencies = await resolveDependenciesForAllRoots({ dependencyScanner, fileManager }, options, promotedDeclarationEntryFiles);
|
|
94
|
+
const bundleFiles = combineAllBundleFiles(options.sourcesFolder, resolvedDependencies.localFiles, options.additionalFiles);
|
|
95
|
+
const contents = await Promise.all(bundleFiles.map(async function (bundleFile) {
|
|
96
|
+
const fileDescription = await resolveFileDescription(fileManager, bundleFile, options.mainPackageJson);
|
|
97
|
+
return {
|
|
98
|
+
fileDescription,
|
|
99
|
+
directDependencies: bundleFile.directDependencies,
|
|
100
|
+
moduleReferences: bundleFile.moduleReferences,
|
|
101
|
+
project: bundleFile.project,
|
|
102
|
+
isExplicitlyIncluded: bundleFile.isExplicitlyIncluded,
|
|
103
|
+
...bundleFile.isGeneratedManifest ? { isGeneratedManifest: true } : {}
|
|
104
|
+
};
|
|
105
|
+
}));
|
|
106
|
+
const targetByInputPath = targetPathByInputPath(contents);
|
|
107
|
+
return {
|
|
108
|
+
contents,
|
|
109
|
+
name: options.name,
|
|
110
|
+
exportPackageJson: options.exportPackageJson,
|
|
111
|
+
surface: normalized.surface,
|
|
112
|
+
externalDependencies: externalDependenciesWithTargetPaths(resolvedDependencies.externalDependencies, targetByInputPath),
|
|
113
|
+
roots: buildResolvedRoots(normalized, contents)
|
|
114
|
+
};
|
|
115
|
+
}
|
|
116
|
+
return {
|
|
117
|
+
async resolve(options) {
|
|
118
|
+
return await resolveWithPromotedDeclarations(options, []);
|
|
119
|
+
},
|
|
120
|
+
resolveWithPromotedDeclarations,
|
|
121
|
+
async resolveWithPromotedDeclarationCompanions(options, substitutedInputFilePaths) {
|
|
122
|
+
const promotedDeclarationEntryFiles = hasDeclarationRoots(options)
|
|
123
|
+
? await findReadableDeclarationCompanions(fileManager, substitutedInputFilePaths)
|
|
124
|
+
: [];
|
|
125
|
+
return await resolveWithPromotedDeclarations(options, promotedDeclarationEntryFiles);
|
|
126
|
+
}
|
|
127
|
+
};
|
|
128
|
+
}
|
|
7
129
|
//# sourceMappingURL=resource-resolver.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resource-resolver.js","sourceRoot":"","sources":["../../../../source/resource-resolver/resource-resolver.ts"],"names":[],"mappings":"AACA,
|
|
1
|
+
{"version":3,"file":"resource-resolver.js","sourceRoot":"","sources":["../../../../source/resource-resolver/resource-resolver.ts"],"names":[],"mappings":"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"}
|
package/sbom/extract-license.js
CHANGED
|
@@ -1,2 +1,12 @@
|
|
|
1
|
-
import 'remeda';
|
|
1
|
+
import { isPlainObject } from 'remeda';
|
|
2
|
+
export function extractLicenseFromManifest(packageJson) {
|
|
3
|
+
if (!isPlainObject(packageJson)) {
|
|
4
|
+
return undefined;
|
|
5
|
+
}
|
|
6
|
+
const { license } = packageJson;
|
|
7
|
+
if (typeof license === 'string' && license.length > 0) {
|
|
8
|
+
return license;
|
|
9
|
+
}
|
|
10
|
+
return undefined;
|
|
11
|
+
}
|
|
2
12
|
//# sourceMappingURL=extract-license.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"extract-license.js","sourceRoot":"","sources":["../../../../source/sbom/extract-license.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"extract-license.js","sourceRoot":"","sources":["../../../../source/sbom/extract-license.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,QAAQ,CAAC;AAEvC,MAAM,UAAU,0BAA0B,CAAC,WAAoB;IAC3D,IAAI,CAAC,aAAa,CAAC,WAAW,CAAC,EAAE,CAAC;QAC9B,OAAO,SAAS,CAAC;IACrB,CAAC;IACD,MAAM,EAAE,OAAO,EAAE,GAAG,WAAW,CAAC;IAChC,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAI,OAAO,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;QACpD,OAAO,OAAO,CAAC;IACnB,CAAC;IACD,OAAO,SAAS,CAAC;AACrB,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { FileManager } from '../file-manager/file-manager.ts';
|
|
2
|
+
type LicenseResolverDependencies = {
|
|
3
|
+
readonly fileManager: FileManager;
|
|
4
|
+
};
|
|
5
|
+
type LicenseResolveOptions = {
|
|
6
|
+
readonly projectFolder: string;
|
|
7
|
+
readonly dependencyName: string;
|
|
8
|
+
};
|
|
9
|
+
export type LicenseResolver = {
|
|
10
|
+
resolveLicense: (options: LicenseResolveOptions) => Promise<string | undefined>;
|
|
11
|
+
};
|
|
12
|
+
export declare function createLicenseResolver(dependencies: LicenseResolverDependencies): LicenseResolver;
|
|
13
|
+
export {};
|
|
14
|
+
//# sourceMappingURL=license-resolver.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"license-resolver.d.ts","sourceRoot":"","sources":["../../../../source/sbom/license-resolver.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,iCAAiC,CAAC;AAGnE,KAAK,2BAA2B,GAAG;IAC/B,QAAQ,CAAC,WAAW,EAAE,WAAW,CAAC;CACrC,CAAC;AAEF,KAAK,qBAAqB,GAAG;IACzB,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAC;IAC/B,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAC;CACnC,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG;IAC1B,cAAc,EAAE,CAAC,OAAO,EAAE,qBAAqB,KAAK,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;CACnF,CAAC;AAMF,wBAAgB,qBAAqB,CAAC,YAAY,EAAE,2BAA2B,GAAG,eAAe,CAoBhG"}
|
package/sbom/license-resolver.js
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
-
import "../common/package-layout.js";
|
|
2
|
-
import "./extract-license.js";
|
|
1
|
+
import { installedDependenciesFolderName, installedDependencyManifestPathIn } from "../common/package-layout.js";
|
|
2
|
+
import { extractLicenseFromManifest } from "./extract-license.js";
|
|
3
|
+
function parseJsonString(content) {
|
|
4
|
+
return JSON.parse(content);
|
|
5
|
+
}
|
|
6
|
+
export function createLicenseResolver(dependencies) {
|
|
7
|
+
const { fileManager } = dependencies;
|
|
8
|
+
function buildMissingDependencyMessage(dependencyName) {
|
|
9
|
+
const intro = `Dependency "${dependencyName}" is declared in the published manifest`;
|
|
10
|
+
return `${intro} but is not installed in ${installedDependenciesFolderName}`;
|
|
11
|
+
}
|
|
12
|
+
return {
|
|
13
|
+
async resolveLicense({ projectFolder, dependencyName }) {
|
|
14
|
+
const packageJsonPath = installedDependencyManifestPathIn(projectFolder, dependencyName);
|
|
15
|
+
const readability = await fileManager.checkReadability(packageJsonPath);
|
|
16
|
+
if (!readability.isReadable) {
|
|
17
|
+
throw new Error(buildMissingDependencyMessage(dependencyName));
|
|
18
|
+
}
|
|
19
|
+
const parsed = parseJsonString(await fileManager.readFile(packageJsonPath));
|
|
20
|
+
return extractLicenseFromManifest(parsed);
|
|
21
|
+
}
|
|
22
|
+
};
|
|
23
|
+
}
|
|
3
24
|
//# sourceMappingURL=license-resolver.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"license-resolver.js","sourceRoot":"","sources":["../../../../source/sbom/license-resolver.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"license-resolver.js","sourceRoot":"","sources":["../../../../source/sbom/license-resolver.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,+BAA+B,EAAE,iCAAiC,EAAE,MAAM,6BAA6B,CAAC;AAEjH,OAAO,EAAE,0BAA0B,EAAE,MAAM,sBAAsB,CAAC;AAelE,SAAS,eAAe,CAAC,OAAe;IACpC,OAAO,IAAI,CAAC,KAAK,CAAC,OAAO,CAAY,CAAC;AAC1C,CAAC;AAED,MAAM,UAAU,qBAAqB,CAAC,YAAyC;IAC3E,MAAM,EAAE,WAAW,EAAE,GAAG,YAAY,CAAC;IAErC,SAAS,6BAA6B,CAAC,cAAsB;QACzD,MAAM,KAAK,GAAG,eAAe,cAAc,yCAAyC,CAAC;QACrF,OAAO,GAAG,KAAK,4BAA4B,+BAA+B,EAAE,CAAC;IACjF,CAAC;IAED,OAAO;QACH,KAAK,CAAC,cAAc,CAAC,EAAE,aAAa,EAAE,cAAc,EAAE;YAClD,MAAM,eAAe,GAAG,iCAAiC,CAAC,aAAa,EAAE,cAAc,CAAC,CAAC;YACzF,MAAM,WAAW,GAAG,MAAM,WAAW,CAAC,gBAAgB,CAAC,eAAe,CAAC,CAAC;YACxE,IAAI,CAAC,WAAW,CAAC,UAAU,EAAE,CAAC;gBAC1B,MAAM,IAAI,KAAK,CAAC,6BAA6B,CAAC,cAAc,CAAC,CAAC,CAAC;YACnE,CAAC;YAED,MAAM,MAAM,GAAG,eAAe,CAAC,MAAM,WAAW,CAAC,QAAQ,CAAC,eAAe,CAAC,CAAC,CAAC;YAC5E,OAAO,0BAA0B,CAAC,MAAM,CAAC,CAAC;QAC9C,CAAC;KACJ,CAAC;AACN,CAAC"}
|