@atlaspack/core 2.16.2-canary.33 → 2.16.2-canary.330
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +835 -0
- package/dist/AssetGraph.js +591 -0
- package/dist/Atlaspack.js +663 -0
- package/dist/AtlaspackConfig.js +324 -0
- package/dist/AtlaspackConfig.schema.js +117 -0
- package/dist/BundleGraph.js +1740 -0
- package/dist/CommittedAsset.js +142 -0
- package/dist/Dependency.js +125 -0
- package/dist/Environment.js +132 -0
- package/dist/EnvironmentManager.js +108 -0
- package/dist/IdentifierRegistry.js +38 -0
- package/dist/InternalConfig.js +37 -0
- package/dist/PackagerRunner.js +545 -0
- package/dist/ReporterRunner.js +151 -0
- package/dist/RequestTracker.js +1360 -0
- package/dist/SymbolPropagation.js +620 -0
- package/dist/TargetDescriptor.schema.js +143 -0
- package/dist/Transformation.js +491 -0
- package/dist/UncommittedAsset.js +315 -0
- package/dist/Validation.js +196 -0
- package/dist/applyRuntimes.js +383 -0
- package/dist/assetUtils.js +169 -0
- package/dist/atlaspack-v3/AtlaspackV3.js +63 -0
- package/dist/atlaspack-v3/NapiWorkerPool.js +61 -0
- package/dist/atlaspack-v3/fs.js +52 -0
- package/dist/atlaspack-v3/index.js +25 -0
- package/dist/atlaspack-v3/jsCallable.js +16 -0
- package/dist/atlaspack-v3/worker/compat/asset-symbols.js +190 -0
- package/dist/atlaspack-v3/worker/compat/bitflags.js +98 -0
- package/dist/atlaspack-v3/worker/compat/dependency.js +43 -0
- package/dist/atlaspack-v3/worker/compat/environment.js +57 -0
- package/dist/atlaspack-v3/worker/compat/index.js +25 -0
- package/dist/atlaspack-v3/worker/compat/mutable-asset.js +152 -0
- package/dist/atlaspack-v3/worker/compat/plugin-config.js +76 -0
- package/dist/atlaspack-v3/worker/compat/plugin-logger.js +26 -0
- package/dist/atlaspack-v3/worker/compat/plugin-options.js +122 -0
- package/dist/atlaspack-v3/worker/compat/plugin-tracer.js +10 -0
- package/dist/atlaspack-v3/worker/compat/target.js +14 -0
- package/dist/atlaspack-v3/worker/worker.js +307 -0
- package/dist/constants.js +17 -0
- package/dist/dumpGraphToGraphViz.js +281 -0
- package/dist/index.js +62 -0
- package/dist/loadAtlaspackPlugin.js +128 -0
- package/dist/loadDotEnv.js +41 -0
- package/dist/projectPath.js +83 -0
- package/dist/public/Asset.js +279 -0
- package/dist/public/Bundle.js +224 -0
- package/dist/public/BundleGraph.js +371 -0
- package/dist/public/BundleGroup.js +53 -0
- package/dist/public/Config.js +286 -0
- package/dist/public/Dependency.js +138 -0
- package/dist/public/Environment.js +278 -0
- package/dist/public/MutableBundleGraph.js +277 -0
- package/dist/public/PluginOptions.js +80 -0
- package/dist/public/Symbols.js +248 -0
- package/dist/public/Target.js +69 -0
- package/dist/registerCoreWithSerializer.js +38 -0
- package/dist/requests/AssetGraphRequest.js +439 -0
- package/dist/requests/AssetGraphRequestRust.js +273 -0
- package/dist/requests/AssetRequest.js +130 -0
- package/dist/requests/AtlaspackBuildRequest.js +65 -0
- package/dist/requests/AtlaspackConfigRequest.js +493 -0
- package/dist/requests/BundleGraphRequest.js +447 -0
- package/dist/requests/ConfigRequest.js +222 -0
- package/dist/requests/DevDepRequest.js +204 -0
- package/dist/requests/EntryRequest.js +314 -0
- package/dist/requests/PackageRequest.js +62 -0
- package/dist/requests/PathRequest.js +349 -0
- package/dist/requests/TargetRequest.js +1311 -0
- package/dist/requests/ValidationRequest.js +49 -0
- package/dist/requests/WriteBundleRequest.js +254 -0
- package/dist/requests/WriteBundlesRequest.js +184 -0
- package/dist/requests/asset-graph-diff.js +128 -0
- package/dist/requests/asset-graph-dot.js +131 -0
- package/dist/resolveOptions.js +269 -0
- package/dist/rustWorkerThreadDylibHack.js +19 -0
- package/dist/serializerCore.browser.js +43 -0
- package/dist/summarizeRequest.js +39 -0
- package/dist/types.js +31 -0
- package/dist/utils.js +172 -0
- package/dist/worker.js +123 -0
- package/lib/AssetGraph.js +111 -14
- package/lib/Atlaspack.js +87 -38
- package/lib/AtlaspackConfig.js +15 -3
- package/lib/AtlaspackConfig.schema.js +16 -5
- package/lib/BundleGraph.js +197 -32
- package/lib/CommittedAsset.js +7 -1
- package/lib/Dependency.js +8 -2
- package/lib/Environment.js +15 -8
- package/lib/EnvironmentManager.js +143 -0
- package/lib/IdentifierRegistry.js +1 -3
- package/lib/InternalConfig.js +3 -2
- package/lib/PackagerRunner.js +90 -27
- package/lib/ReporterRunner.js +6 -9
- package/lib/RequestTracker.js +266 -156
- package/lib/SymbolPropagation.js +42 -18
- package/lib/TargetDescriptor.schema.js +7 -1
- package/lib/Transformation.js +35 -14
- package/lib/UncommittedAsset.js +33 -12
- package/lib/Validation.js +18 -2
- package/lib/applyRuntimes.js +96 -4
- package/lib/assetUtils.js +15 -5
- package/lib/atlaspack-v3/AtlaspackV3.js +32 -14
- package/lib/atlaspack-v3/NapiWorkerPool.js +7 -1
- package/lib/atlaspack-v3/fs.js +3 -1
- package/lib/atlaspack-v3/index.js +28 -1
- package/lib/atlaspack-v3/jsCallable.js +0 -2
- package/lib/atlaspack-v3/worker/compat/asset-symbols.js +7 -4
- package/lib/atlaspack-v3/worker/compat/bitflags.js +31 -25
- package/lib/atlaspack-v3/worker/compat/dependency.js +4 -1
- package/lib/atlaspack-v3/worker/compat/environment.js +10 -7
- package/lib/atlaspack-v3/worker/compat/mutable-asset.js +15 -10
- package/lib/atlaspack-v3/worker/compat/plugin-config.js +8 -10
- package/lib/atlaspack-v3/worker/compat/plugin-options.js +1 -0
- package/lib/atlaspack-v3/worker/compat/plugin-tracer.js +3 -0
- package/lib/atlaspack-v3/worker/compat/target.js +2 -0
- package/lib/atlaspack-v3/worker/index.js +3 -0
- package/lib/atlaspack-v3/worker/worker.js +60 -12
- package/lib/constants.js +0 -1
- package/lib/dumpGraphToGraphViz.js +71 -16
- package/lib/index.js +45 -1
- package/lib/loadDotEnv.js +4 -1
- package/lib/projectPath.js +5 -0
- package/lib/public/Asset.js +21 -11
- package/lib/public/Bundle.js +15 -16
- package/lib/public/BundleGraph.js +25 -22
- package/lib/public/BundleGroup.js +4 -5
- package/lib/public/Config.js +118 -17
- package/lib/public/Dependency.js +8 -6
- package/lib/public/Environment.js +12 -7
- package/lib/public/MutableBundleGraph.js +54 -12
- package/lib/public/PluginOptions.js +2 -2
- package/lib/public/Symbols.js +11 -11
- package/lib/public/Target.js +7 -6
- package/lib/registerCoreWithSerializer.js +5 -3
- package/lib/requests/AssetGraphRequest.js +74 -27
- package/lib/requests/AssetGraphRequestRust.js +140 -64
- package/lib/requests/AssetRequest.js +23 -6
- package/lib/requests/AtlaspackBuildRequest.js +10 -4
- package/lib/requests/AtlaspackConfigRequest.js +27 -16
- package/lib/requests/BundleGraphRequest.js +40 -23
- package/lib/requests/ConfigRequest.js +28 -4
- package/lib/requests/DevDepRequest.js +31 -5
- package/lib/requests/EntryRequest.js +2 -0
- package/lib/requests/PackageRequest.js +2 -1
- package/lib/requests/PathRequest.js +24 -3
- package/lib/requests/TargetRequest.js +122 -57
- package/lib/requests/ValidationRequest.js +5 -1
- package/lib/requests/WriteBundleRequest.js +39 -11
- package/lib/requests/WriteBundlesRequest.js +51 -4
- package/lib/requests/asset-graph-diff.js +12 -7
- package/lib/requests/asset-graph-dot.js +1 -7
- package/lib/resolveOptions.js +37 -10
- package/lib/rustWorkerThreadDylibHack.js +0 -1
- package/lib/types/AssetGraph.d.ts +80 -0
- package/lib/types/Atlaspack.d.ts +52 -0
- package/lib/types/AtlaspackConfig.d.ts +65 -0
- package/lib/types/AtlaspackConfig.schema.d.ts +53 -0
- package/lib/types/BundleGraph.d.ts +184 -0
- package/lib/types/CommittedAsset.d.ts +23 -0
- package/lib/types/Dependency.d.ts +44 -0
- package/lib/types/Environment.d.ts +11 -0
- package/lib/types/EnvironmentManager.d.ts +37 -0
- package/lib/types/IdentifierRegistry.d.ts +6 -0
- package/lib/types/InternalConfig.d.ts +24 -0
- package/lib/types/PackagerRunner.d.ts +85 -0
- package/lib/types/ReporterRunner.d.ts +25 -0
- package/lib/types/RequestTracker.d.ts +385 -0
- package/lib/types/SymbolPropagation.d.ts +11 -0
- package/lib/types/TargetDescriptor.schema.d.ts +5 -0
- package/lib/types/Transformation.d.ts +72 -0
- package/lib/types/UncommittedAsset.d.ts +61 -0
- package/lib/types/Validation.d.ts +37 -0
- package/lib/types/applyRuntimes.d.ts +25 -0
- package/lib/types/assetUtils.d.ts +42 -0
- package/lib/types/atlaspack-v3/AtlaspackV3.d.ts +26 -0
- package/lib/types/atlaspack-v3/NapiWorkerPool.d.ts +12 -0
- package/lib/types/atlaspack-v3/fs.d.ts +12 -0
- package/lib/types/atlaspack-v3/index.d.ts +5 -0
- package/lib/types/atlaspack-v3/jsCallable.d.ts +1 -0
- package/lib/types/atlaspack-v3/worker/compat/asset-symbols.d.ts +51 -0
- package/lib/types/atlaspack-v3/worker/compat/bitflags.d.ts +14 -0
- package/lib/types/atlaspack-v3/worker/compat/dependency.d.ts +25 -0
- package/lib/types/atlaspack-v3/worker/compat/environment.d.ts +27 -0
- package/{src/atlaspack-v3/worker/compat/index.js → lib/types/atlaspack-v3/worker/compat/index.d.ts} +0 -1
- package/lib/types/atlaspack-v3/worker/compat/mutable-asset.d.ts +49 -0
- package/lib/types/atlaspack-v3/worker/compat/plugin-config.d.ts +37 -0
- package/lib/types/atlaspack-v3/worker/compat/plugin-logger.d.ts +9 -0
- package/lib/types/atlaspack-v3/worker/compat/plugin-options.d.ts +22 -0
- package/lib/types/atlaspack-v3/worker/compat/plugin-tracer.d.ts +5 -0
- package/lib/types/atlaspack-v3/worker/compat/target.d.ts +11 -0
- package/lib/types/atlaspack-v3/worker/worker.d.ts +60 -0
- package/lib/types/constants.d.ts +13 -0
- package/lib/types/dumpGraphToGraphViz.d.ts +10 -0
- package/lib/types/index.d.ts +8 -0
- package/lib/types/loadAtlaspackPlugin.d.ts +8 -0
- package/lib/types/loadDotEnv.d.ts +3 -0
- package/lib/types/projectPath.d.ts +19 -0
- package/lib/types/public/Asset.d.ts +74 -0
- package/lib/types/public/Bundle.d.ts +45 -0
- package/lib/types/public/BundleGraph.d.ts +72 -0
- package/lib/types/public/BundleGroup.d.ts +12 -0
- package/lib/types/public/Config.d.ts +75 -0
- package/lib/types/public/Dependency.d.ts +32 -0
- package/lib/types/public/Environment.d.ts +34 -0
- package/lib/types/public/MutableBundleGraph.d.ts +26 -0
- package/lib/types/public/PluginOptions.d.ts +25 -0
- package/lib/types/public/Symbols.d.ts +81 -0
- package/lib/types/public/Target.d.ts +16 -0
- package/lib/types/registerCoreWithSerializer.d.ts +2 -0
- package/lib/types/requests/AssetGraphRequest.d.ts +76 -0
- package/lib/types/requests/AssetGraphRequestRust.d.ts +21 -0
- package/lib/types/requests/AssetRequest.d.ts +16 -0
- package/lib/types/requests/AtlaspackBuildRequest.d.ts +33 -0
- package/lib/types/requests/AtlaspackConfigRequest.d.ts +45 -0
- package/lib/types/requests/BundleGraphRequest.d.ts +28 -0
- package/lib/types/requests/ConfigRequest.d.ts +59 -0
- package/lib/types/requests/DevDepRequest.d.ts +30 -0
- package/lib/types/requests/EntryRequest.d.ts +36 -0
- package/lib/types/requests/PackageRequest.d.ts +27 -0
- package/lib/types/requests/PathRequest.d.ts +48 -0
- package/lib/types/requests/TargetRequest.d.ts +48 -0
- package/lib/types/requests/ValidationRequest.d.ts +20 -0
- package/lib/types/requests/WriteBundleRequest.d.ts +28 -0
- package/lib/types/requests/WriteBundlesRequest.d.ts +32 -0
- package/lib/types/requests/asset-graph-diff.d.ts +1 -0
- package/lib/types/requests/asset-graph-dot.d.ts +9 -0
- package/lib/types/resolveOptions.d.ts +3 -0
- package/lib/types/rustWorkerThreadDylibHack.d.ts +9 -0
- package/lib/types/serializerCore.browser.d.ts +3 -0
- package/lib/types/summarizeRequest.d.ts +10 -0
- package/lib/types/types.d.ts +495 -0
- package/lib/types/utils.d.ts +23 -0
- package/lib/types/worker.d.ts +44 -0
- package/lib/types.js +8 -1
- package/lib/utils.js +17 -2
- package/lib/worker.js +30 -14
- package/package.json +25 -35
- package/src/{AssetGraph.js → AssetGraph.ts} +156 -52
- package/src/{Atlaspack.js → Atlaspack.ts} +121 -63
- package/src/{AtlaspackConfig.schema.js → AtlaspackConfig.schema.ts} +25 -19
- package/src/{AtlaspackConfig.js → AtlaspackConfig.ts} +78 -54
- package/src/{BundleGraph.js → BundleGraph.ts} +383 -140
- package/src/{CommittedAsset.js → CommittedAsset.ts} +15 -13
- package/src/{Dependency.js → Dependency.ts} +59 -42
- package/src/{Environment.js → Environment.ts} +24 -15
- package/src/EnvironmentManager.ts +154 -0
- package/src/{IdentifierRegistry.js → IdentifierRegistry.ts} +1 -4
- package/src/{InternalConfig.js → InternalConfig.ts} +22 -23
- package/src/{PackagerRunner.js → PackagerRunner.ts} +179 -87
- package/src/{ReporterRunner.js → ReporterRunner.ts} +13 -18
- package/src/{RequestTracker.js → RequestTracker.ts} +572 -357
- package/src/{SymbolPropagation.js → SymbolPropagation.ts} +165 -57
- package/src/{TargetDescriptor.schema.js → TargetDescriptor.schema.ts} +7 -1
- package/src/{Transformation.js → Transformation.ts} +74 -64
- package/src/{UncommittedAsset.js → UncommittedAsset.ts} +60 -39
- package/src/{Validation.js → Validation.ts} +32 -17
- package/src/{applyRuntimes.js → applyRuntimes.ts} +133 -26
- package/src/{assetUtils.js → assetUtils.ts} +49 -36
- package/src/atlaspack-v3/AtlaspackV3.ts +111 -0
- package/src/atlaspack-v3/{NapiWorkerPool.js → NapiWorkerPool.ts} +15 -6
- package/src/atlaspack-v3/{fs.js → fs.ts} +3 -4
- package/src/atlaspack-v3/{index.js → index.ts} +2 -4
- package/src/atlaspack-v3/jsCallable.ts +14 -0
- package/src/atlaspack-v3/worker/compat/{asset-symbols.js → asset-symbols.ts} +40 -30
- package/src/atlaspack-v3/worker/compat/bitflags.ts +102 -0
- package/src/atlaspack-v3/worker/compat/{dependency.js → dependency.ts} +13 -13
- package/src/atlaspack-v3/worker/compat/{environment.js → environment.ts} +13 -9
- package/src/atlaspack-v3/worker/compat/index.ts +9 -0
- package/src/atlaspack-v3/worker/compat/{mutable-asset.js → mutable-asset.ts} +21 -20
- package/src/atlaspack-v3/worker/compat/{plugin-config.js → plugin-config.ts} +27 -26
- package/src/atlaspack-v3/worker/compat/{plugin-logger.js → plugin-logger.ts} +0 -2
- package/src/atlaspack-v3/worker/compat/{plugin-options.js → plugin-options.ts} +4 -5
- package/src/atlaspack-v3/worker/compat/{plugin-tracer.js → plugin-tracer.ts} +2 -2
- package/src/atlaspack-v3/worker/compat/{target.js → target.ts} +3 -4
- package/src/atlaspack-v3/worker/index.js +2 -1
- package/src/atlaspack-v3/worker/{worker.js → worker.ts} +124 -71
- package/src/{constants.js → constants.ts} +0 -3
- package/src/{dumpGraphToGraphViz.js → dumpGraphToGraphViz.ts} +73 -28
- package/src/index.ts +18 -0
- package/src/{loadAtlaspackPlugin.js → loadAtlaspackPlugin.ts} +8 -9
- package/src/{loadDotEnv.js → loadDotEnv.ts} +2 -2
- package/src/{projectPath.js → projectPath.ts} +20 -9
- package/src/public/{Asset.js → Asset.ts} +41 -28
- package/src/public/{Bundle.js → Bundle.ts} +28 -29
- package/src/public/{BundleGraph.js → BundleGraph.ts} +103 -68
- package/src/public/{BundleGroup.js → BundleGroup.ts} +7 -10
- package/src/public/{Config.js → Config.ts} +171 -33
- package/src/public/{Dependency.js → Dependency.ts} +20 -17
- package/src/public/{Environment.js → Environment.ts} +28 -17
- package/src/public/{MutableBundleGraph.js → MutableBundleGraph.ts} +55 -24
- package/src/public/{PluginOptions.js → PluginOptions.ts} +6 -6
- package/src/public/{Symbols.js → Symbols.ts} +75 -36
- package/src/public/{Target.js → Target.ts} +10 -8
- package/src/{registerCoreWithSerializer.js → registerCoreWithSerializer.ts} +9 -7
- package/src/requests/{AssetGraphRequest.js → AssetGraphRequest.ts} +129 -80
- package/src/requests/AssetGraphRequestRust.ts +364 -0
- package/src/requests/{AssetRequest.js → AssetRequest.ts} +24 -18
- package/src/requests/{AtlaspackBuildRequest.js → AtlaspackBuildRequest.ts} +46 -32
- package/src/requests/{AtlaspackConfigRequest.js → AtlaspackConfigRequest.ts} +72 -58
- package/src/requests/{BundleGraphRequest.js → BundleGraphRequest.ts} +93 -76
- package/src/requests/{ConfigRequest.js → ConfigRequest.ts} +71 -50
- package/src/requests/{DevDepRequest.js → DevDepRequest.ts} +60 -35
- package/src/requests/{EntryRequest.js → EntryRequest.ts} +36 -31
- package/src/requests/{PackageRequest.js → PackageRequest.ts} +20 -22
- package/src/requests/{PathRequest.js → PathRequest.ts} +47 -37
- package/src/requests/{TargetRequest.js → TargetRequest.ts} +260 -179
- package/src/requests/{ValidationRequest.js → ValidationRequest.ts} +18 -17
- package/src/requests/{WriteBundleRequest.js → WriteBundleRequest.ts} +77 -49
- package/src/requests/{WriteBundlesRequest.js → WriteBundlesRequest.ts} +109 -37
- package/src/requests/{asset-graph-diff.js → asset-graph-diff.ts} +25 -21
- package/src/requests/{asset-graph-dot.js → asset-graph-dot.ts} +8 -12
- package/src/{resolveOptions.js → resolveOptions.ts} +57 -24
- package/src/{rustWorkerThreadDylibHack.js → rustWorkerThreadDylibHack.ts} +1 -4
- package/src/{serializerCore.browser.js → serializerCore.browser.ts} +2 -3
- package/src/{summarizeRequest.js → summarizeRequest.ts} +17 -5
- package/src/types.ts +650 -0
- package/src/{utils.js → utils.ts} +52 -21
- package/src/{worker.js → worker.ts} +50 -42
- package/test/{AssetGraph.test.js → AssetGraph.test.ts} +37 -8
- package/test/{Atlaspack.test.js → Atlaspack.test.ts} +5 -10
- package/test/{AtlaspackConfig.test.js → AtlaspackConfig.test.ts} +0 -5
- package/test/{AtlaspackConfigRequest.test.js → AtlaspackConfigRequest.test.ts} +76 -16
- package/test/{BundleGraph.test.js → BundleGraph.test.ts} +8 -13
- package/test/{Dependency.test.js → Dependency.test.ts} +2 -3
- package/test/{EntryRequest.test.js → EntryRequest.test.ts} +1 -6
- package/test/Environment.test.ts +153 -0
- package/test/EnvironmentManager.test.ts +188 -0
- package/test/{IdentifierRegistry.test.js → IdentifierRegistry.test.ts} +2 -4
- package/test/{InternalAsset.test.js → InternalAsset.test.ts} +2 -7
- package/test/PackagerRunner.test.ts +0 -0
- package/test/{PublicAsset.test.js → PublicAsset.test.ts} +2 -7
- package/test/{PublicBundle.test.js → PublicBundle.test.ts} +1 -2
- package/test/{PublicDependency.test.js → PublicDependency.test.ts} +0 -2
- package/test/PublicEnvironment.test.ts +49 -0
- package/test/{PublicMutableBundleGraph.test.js → PublicMutableBundleGraph.test.ts} +6 -11
- package/test/{RequestTracker.test.js → RequestTracker.test.ts} +314 -59
- package/test/{SymbolPropagation.test.js → SymbolPropagation.test.ts} +124 -74
- package/test/{TargetRequest.test.js → TargetRequest.test.ts} +66 -92
- package/test/fixtures/config-with-reporters/.parcelrc +7 -0
- package/test/fixtures/custom-targets/package.json +6 -0
- package/test/public/Config.test.ts +104 -0
- package/test/requests/AssetGraphRequestRust.test.ts +443 -0
- package/test/requests/{ConfigRequest.test.js → ConfigRequest.test.ts} +202 -13
- package/test/requests/{DevDepRequest.test.js → DevDepRequest.test.ts} +0 -2
- package/test/{test-utils.js → test-utils.ts} +4 -11
- package/test/{utils.test.js → utils.test.ts} +1 -3
- package/tsconfig.json +60 -0
- package/tsconfig.tsbuildinfo +1 -0
- package/index.d.ts +0 -30
- package/src/atlaspack-v3/AtlaspackV3.js +0 -87
- package/src/atlaspack-v3/jsCallable.js +0 -18
- package/src/atlaspack-v3/worker/compat/bitflags.js +0 -100
- package/src/index.js +0 -13
- package/src/requests/AssetGraphRequestRust.js +0 -263
- package/src/types.js +0 -600
- package/test/Environment.test.js +0 -119
- package/test/PackagerRunner.test.js +0 -27
- package/test/PublicEnvironment.test.js +0 -27
- package/test/requests/AssetGraphRequestRust.test.js +0 -411
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.MutableAsset = void 0;
|
|
7
7
|
function _sourceMap() {
|
|
8
|
-
const data = _interopRequireDefault(require("@
|
|
8
|
+
const data = _interopRequireDefault(require("@atlaspack/source-map"));
|
|
9
9
|
_sourceMap = function () {
|
|
10
10
|
return data;
|
|
11
11
|
};
|
|
@@ -20,10 +20,14 @@ function _stream() {
|
|
|
20
20
|
}
|
|
21
21
|
var _bitflags = require("./bitflags");
|
|
22
22
|
var _assetSymbols = require("./asset-symbols");
|
|
23
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
24
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
25
23
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
24
|
+
// @ts-expect-error TS2694
|
|
25
|
+
|
|
26
26
|
class MutableAsset {
|
|
27
|
+
// @ts-expect-error TS2564
|
|
28
|
+
|
|
29
|
+
// @ts-expect-error TS2416
|
|
30
|
+
|
|
27
31
|
#astDirty;
|
|
28
32
|
#ast;
|
|
29
33
|
#contents;
|
|
@@ -34,6 +38,8 @@ class MutableAsset {
|
|
|
34
38
|
get astGenerator() {
|
|
35
39
|
throw new Error('get MutableAsset.astGenerator');
|
|
36
40
|
}
|
|
41
|
+
|
|
42
|
+
// @ts-expect-error TS1051
|
|
37
43
|
set astGenerator(value) {
|
|
38
44
|
throw new Error('set MutableAsset.astGenerator');
|
|
39
45
|
}
|
|
@@ -106,7 +112,6 @@ class MutableAsset {
|
|
|
106
112
|
// Only create the source map if it is requested
|
|
107
113
|
if (!this.#sourceMap && this.#map && typeof this.#map === 'string') {
|
|
108
114
|
let sourceMap = new (_sourceMap().default)(this.#projectRoot);
|
|
109
|
-
// $FlowFixMe Flow is dumb
|
|
110
115
|
sourceMap.addVLQMap(JSON.parse(this.#map));
|
|
111
116
|
this.#sourceMap = sourceMap;
|
|
112
117
|
}
|
|
@@ -126,32 +131,32 @@ class MutableAsset {
|
|
|
126
131
|
}
|
|
127
132
|
|
|
128
133
|
// eslint-disable-next-line no-unused-vars
|
|
129
|
-
addDependency() {
|
|
134
|
+
addDependency(options) {
|
|
130
135
|
throw new Error('MutableAsset.addDependency()');
|
|
131
136
|
}
|
|
132
137
|
|
|
133
138
|
// eslint-disable-next-line no-unused-vars
|
|
134
|
-
addURLDependency() {
|
|
139
|
+
addURLDependency(url, opts) {
|
|
135
140
|
throw new Error('MutableAsset.addURLDependency()');
|
|
136
141
|
}
|
|
137
142
|
|
|
138
143
|
// eslint-disable-next-line no-unused-vars
|
|
139
|
-
setEnvironment() {
|
|
144
|
+
setEnvironment(opts) {
|
|
140
145
|
throw new Error('MutableAsset.setEnvironment()');
|
|
141
146
|
}
|
|
142
147
|
|
|
143
148
|
// eslint-disable-next-line no-unused-vars
|
|
144
|
-
invalidateOnFileChange() {
|
|
149
|
+
invalidateOnFileChange(invalidation) {
|
|
145
150
|
// TODO: Forward invalidations to Rust
|
|
146
151
|
}
|
|
147
152
|
|
|
148
153
|
// eslint-disable-next-line no-unused-vars
|
|
149
|
-
invalidateOnFileCreate() {
|
|
154
|
+
invalidateOnFileCreate(invalidation) {
|
|
150
155
|
// TODO: Forward invalidations to Rust
|
|
151
156
|
}
|
|
152
157
|
|
|
153
158
|
// eslint-disable-next-line no-unused-vars
|
|
154
|
-
invalidateOnEnvChange() {
|
|
159
|
+
invalidateOnEnvChange(invalidation) {
|
|
155
160
|
// TODO: Forward invalidations to Rust
|
|
156
161
|
}
|
|
157
162
|
invalidateOnStartup() {
|
|
@@ -7,6 +7,7 @@ exports.PluginConfig = void 0;
|
|
|
7
7
|
var _Config = _interopRequireDefault(require("../../../public/Config"));
|
|
8
8
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
9
9
|
class PluginConfig {
|
|
10
|
+
// @ts-expect-error TS2564
|
|
10
11
|
#projectRoot;
|
|
11
12
|
#inner;
|
|
12
13
|
constructor({
|
|
@@ -21,17 +22,14 @@ class PluginConfig {
|
|
|
21
22
|
this.isSource = isSource;
|
|
22
23
|
this.searchPath = searchPath;
|
|
23
24
|
this.#inner = new _Config.default(
|
|
24
|
-
//
|
|
25
|
+
// @ts-expect-error TS2345
|
|
25
26
|
{
|
|
26
27
|
invalidateOnConfigKeyChange: [],
|
|
27
28
|
invalidateOnFileCreate: [],
|
|
28
29
|
invalidateOnFileChange: new Set(),
|
|
29
30
|
devDeps: [],
|
|
30
|
-
// $FlowFixMe
|
|
31
31
|
searchPath: searchPath.replace(projectRoot + '/', '')
|
|
32
|
-
},
|
|
33
|
-
// $FlowFixMe
|
|
34
|
-
{
|
|
32
|
+
}, {
|
|
35
33
|
projectRoot,
|
|
36
34
|
inputFS: fs,
|
|
37
35
|
outputFS: fs,
|
|
@@ -40,21 +38,21 @@ class PluginConfig {
|
|
|
40
38
|
}
|
|
41
39
|
|
|
42
40
|
// eslint-disable-next-line no-unused-vars
|
|
43
|
-
invalidateOnFileChange() {}
|
|
41
|
+
invalidateOnFileChange(filePath) {}
|
|
44
42
|
|
|
45
43
|
// eslint-disable-next-line no-unused-vars
|
|
46
|
-
invalidateOnFileCreate() {}
|
|
44
|
+
invalidateOnFileCreate(invalidations) {}
|
|
47
45
|
|
|
48
46
|
// eslint-disable-next-line no-unused-vars
|
|
49
|
-
invalidateOnEnvChange() {}
|
|
47
|
+
invalidateOnEnvChange(invalidation) {}
|
|
50
48
|
invalidateOnStartup() {}
|
|
51
49
|
invalidateOnBuild() {}
|
|
52
50
|
|
|
53
51
|
// eslint-disable-next-line no-unused-vars
|
|
54
|
-
addDevDependency() {}
|
|
52
|
+
addDevDependency(options) {}
|
|
55
53
|
|
|
56
54
|
// eslint-disable-next-line no-unused-vars
|
|
57
|
-
setCacheKey() {}
|
|
55
|
+
setCacheKey(key) {}
|
|
58
56
|
getConfig(
|
|
59
57
|
// eslint-disable-next-line no-unused-vars
|
|
60
58
|
filePaths,
|
|
@@ -51,33 +51,54 @@ var _compat = require("./compat");
|
|
|
51
51
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
52
52
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
53
53
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
54
|
+
// @ts-expect-error TS2305
|
|
55
|
+
|
|
54
56
|
const CONFIG = Symbol.for('parcel-plugin-config');
|
|
55
57
|
class AtlaspackWorker {
|
|
56
58
|
#resolvers;
|
|
57
59
|
#transformers;
|
|
58
60
|
#fs;
|
|
61
|
+
#packageManager;
|
|
59
62
|
constructor() {
|
|
60
63
|
this.#resolvers = new Map();
|
|
61
64
|
this.#transformers = new Map();
|
|
62
65
|
this.#fs = new (_fs().NodeFS)();
|
|
66
|
+
this.#packageManager = new (_packageManager().NodePackageManager)(this.#fs, '/');
|
|
63
67
|
}
|
|
64
68
|
loadPlugin = (0, _jsCallable.jsCallable)(async ({
|
|
65
69
|
kind,
|
|
66
70
|
specifier,
|
|
67
|
-
resolveFrom
|
|
71
|
+
resolveFrom,
|
|
72
|
+
featureFlags
|
|
68
73
|
}) => {
|
|
69
|
-
|
|
70
|
-
let
|
|
71
|
-
|
|
72
|
-
|
|
74
|
+
// Use packageManager.require() instead of dynamic import() to support TypeScript plugins
|
|
75
|
+
let resolvedModule = await this.#packageManager.require(specifier, resolveFrom, {
|
|
76
|
+
shouldAutoInstall: false
|
|
77
|
+
});
|
|
73
78
|
let instance = undefined;
|
|
74
|
-
|
|
79
|
+
// Check for CommonJS export (module.exports = new Plugin(...))
|
|
80
|
+
if (resolvedModule[CONFIG]) {
|
|
81
|
+
instance = resolvedModule[CONFIG];
|
|
82
|
+
} else if (resolvedModule.default && resolvedModule.default[CONFIG]) {
|
|
83
|
+
// ESM default export
|
|
75
84
|
instance = resolvedModule.default[CONFIG];
|
|
76
85
|
} else if (resolvedModule.default && resolvedModule.default.default && resolvedModule.default.default[CONFIG]) {
|
|
86
|
+
// Double-wrapped default export
|
|
77
87
|
instance = resolvedModule.default.default[CONFIG];
|
|
78
88
|
} else {
|
|
79
89
|
throw new Error(`Plugin could not be resolved\n\t${kind}\n\t${resolveFrom}\n\t${specifier}`);
|
|
80
90
|
}
|
|
91
|
+
// Set feature flags in the worker process
|
|
92
|
+
// if (featureFlags) {
|
|
93
|
+
// Set feature flags in the worker process
|
|
94
|
+
let featureFlagsModule = await this.#packageManager.require('@atlaspack/feature-flags', __filename, {
|
|
95
|
+
shouldAutoInstall: false
|
|
96
|
+
});
|
|
97
|
+
featureFlagsModule.setFeatureFlags(featureFlags);
|
|
98
|
+
// const {setFeatureFlags} = await import('@atlaspack/feature-flags');
|
|
99
|
+
// setFeatureFlags(featureFlags);
|
|
100
|
+
// }
|
|
101
|
+
|
|
81
102
|
switch (kind) {
|
|
82
103
|
case 'resolver':
|
|
83
104
|
this.#resolvers.set(specifier, {
|
|
@@ -122,6 +143,7 @@ class AtlaspackWorker {
|
|
|
122
143
|
};
|
|
123
144
|
if (!('config' in state)) {
|
|
124
145
|
var _state$resolver$loadC, _state$resolver;
|
|
146
|
+
// @ts-expect-error TS2345
|
|
125
147
|
state.config = await ((_state$resolver$loadC = (_state$resolver = state.resolver).loadConfig) === null || _state$resolver$loadC === void 0 ? void 0 : _state$resolver$loadC.call(_state$resolver, {
|
|
126
148
|
config: new _compat.PluginConfig({
|
|
127
149
|
env,
|
|
@@ -134,6 +156,8 @@ class AtlaspackWorker {
|
|
|
134
156
|
...defaultOptions
|
|
135
157
|
}));
|
|
136
158
|
}
|
|
159
|
+
|
|
160
|
+
// @ts-expect-error TS2345
|
|
137
161
|
const result = await state.resolver.resolve({
|
|
138
162
|
specifier,
|
|
139
163
|
dependency,
|
|
@@ -149,13 +173,21 @@ class AtlaspackWorker {
|
|
|
149
173
|
}
|
|
150
174
|
};
|
|
151
175
|
}
|
|
176
|
+
if (result.isExcluded) {
|
|
177
|
+
return {
|
|
178
|
+
invalidations: [],
|
|
179
|
+
resolution: {
|
|
180
|
+
type: 'excluded'
|
|
181
|
+
}
|
|
182
|
+
};
|
|
183
|
+
}
|
|
152
184
|
return {
|
|
153
185
|
invalidations: [],
|
|
154
186
|
resolution: {
|
|
155
187
|
type: 'resolved',
|
|
156
188
|
filePath: result.filePath || '',
|
|
157
189
|
canDefer: result.canDefer || false,
|
|
158
|
-
sideEffects: result.sideEffects
|
|
190
|
+
sideEffects: result.sideEffects ?? true,
|
|
159
191
|
code: result.code || undefined,
|
|
160
192
|
meta: result.meta || undefined,
|
|
161
193
|
pipeline: result.pipeline || undefined,
|
|
@@ -187,7 +219,9 @@ class AtlaspackWorker {
|
|
|
187
219
|
return Promise.resolve(resolvedPath);
|
|
188
220
|
};
|
|
189
221
|
const env = new _compat.Environment(napiEnv);
|
|
190
|
-
const mutableAsset = new _compat.MutableAsset(innerAsset,
|
|
222
|
+
const mutableAsset = new _compat.MutableAsset(innerAsset,
|
|
223
|
+
// @ts-expect-error TS2345
|
|
224
|
+
contents, env, this.#fs, map, options.projectRoot);
|
|
191
225
|
const defaultOptions = {
|
|
192
226
|
logger: new _compat.PluginLogger(),
|
|
193
227
|
tracer: new _compat.PluginTracer(),
|
|
@@ -199,6 +233,8 @@ class AtlaspackWorker {
|
|
|
199
233
|
outputFS: this.#fs
|
|
200
234
|
})
|
|
201
235
|
};
|
|
236
|
+
|
|
237
|
+
// @ts-expect-error TS2345
|
|
202
238
|
const config = await ((_transformer$loadConf = transformer.loadConfig) === null || _transformer$loadConf === void 0 ? void 0 : _transformer$loadConf.call(transformer, {
|
|
203
239
|
config: new _compat.PluginConfig({
|
|
204
240
|
env,
|
|
@@ -212,6 +248,7 @@ class AtlaspackWorker {
|
|
|
212
248
|
}));
|
|
213
249
|
if (transformer.parse) {
|
|
214
250
|
const ast = await transformer.parse({
|
|
251
|
+
// @ts-expect-error TS2322
|
|
215
252
|
asset: mutableAsset,
|
|
216
253
|
config,
|
|
217
254
|
resolve: resolveFunc,
|
|
@@ -222,6 +259,7 @@ class AtlaspackWorker {
|
|
|
222
259
|
}
|
|
223
260
|
}
|
|
224
261
|
const result = await state.transformer.transform({
|
|
262
|
+
// @ts-expect-error TS2322
|
|
225
263
|
asset: mutableAsset,
|
|
226
264
|
config,
|
|
227
265
|
resolve: resolveFunc,
|
|
@@ -230,8 +268,8 @@ class AtlaspackWorker {
|
|
|
230
268
|
if (transformer.generate) {
|
|
231
269
|
const ast = await mutableAsset.getAST();
|
|
232
270
|
if (ast) {
|
|
233
|
-
// $FlowFixMe "Cannot call `transformer.generate` because undefined [1] is not a function." 🤷♀️
|
|
234
271
|
const output = await transformer.generate({
|
|
272
|
+
// @ts-expect-error TS2322
|
|
235
273
|
asset: mutableAsset,
|
|
236
274
|
ast,
|
|
237
275
|
...defaultOptions
|
|
@@ -241,6 +279,7 @@ class AtlaspackWorker {
|
|
|
241
279
|
} else if (output.content instanceof Buffer) {
|
|
242
280
|
mutableAsset.setBuffer(output.content);
|
|
243
281
|
} else {
|
|
282
|
+
// @ts-expect-error TS2345
|
|
244
283
|
mutableAsset.setStream(output.content);
|
|
245
284
|
}
|
|
246
285
|
if (output.map) {
|
|
@@ -250,6 +289,13 @@ class AtlaspackWorker {
|
|
|
250
289
|
}
|
|
251
290
|
(0, _assert().default)(result.length === 1, '[V3] Unimplemented: Multiple asset return from Node transformer');
|
|
252
291
|
(0, _assert().default)(result[0] === mutableAsset, '[V3] Unimplemented: New asset returned from Node transformer');
|
|
292
|
+
let assetBuffer = await mutableAsset.getBuffer();
|
|
293
|
+
|
|
294
|
+
// If the asset has no code, we set the buffer to null, which we can
|
|
295
|
+
// detect in Rust, to avoid passing back an empty buffer, which we can't.
|
|
296
|
+
if (assetBuffer.length === 0) {
|
|
297
|
+
assetBuffer = null;
|
|
298
|
+
}
|
|
253
299
|
return [{
|
|
254
300
|
id: mutableAsset.id,
|
|
255
301
|
bundleBehavior: _compat.bundleBehaviorMap.intoNullable(mutableAsset.bundleBehavior),
|
|
@@ -265,10 +311,10 @@ class AtlaspackWorker {
|
|
|
265
311
|
symbols: mutableAsset.symbols.intoNapi(),
|
|
266
312
|
type: mutableAsset.type,
|
|
267
313
|
uniqueKey: mutableAsset.uniqueKey
|
|
268
|
-
},
|
|
314
|
+
}, assetBuffer,
|
|
269
315
|
// Only send back the map if it has changed
|
|
270
316
|
mutableAsset.isMapDirty ?
|
|
271
|
-
//
|
|
317
|
+
// @ts-expect-error TS2533
|
|
272
318
|
JSON.stringify((await mutableAsset.getMap()).toVLQ()) : ''];
|
|
273
319
|
});
|
|
274
320
|
}
|
|
@@ -277,4 +323,6 @@ class AtlaspackWorker {
|
|
|
277
323
|
exports.AtlaspackWorker = AtlaspackWorker;
|
|
278
324
|
const worker = new AtlaspackWorker();
|
|
279
325
|
const napiWorker = napi().newNodejsWorker(worker);
|
|
280
|
-
_worker_threads().parentPort === null || _worker_threads().parentPort === void 0 || _worker_threads().parentPort.postMessage(napiWorker);
|
|
326
|
+
_worker_threads().parentPort === null || _worker_threads().parentPort === void 0 || _worker_threads().parentPort.postMessage(napiWorker);
|
|
327
|
+
|
|
328
|
+
// @ts-expect-error TS2694
|
package/lib/constants.js
CHANGED
|
@@ -5,7 +5,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.VALID = exports.STARTUP = exports.OPTION_CHANGE = exports.INITIAL_BUILD = exports.HASH_REF_REGEX = exports.HASH_REF_PREFIX = exports.HASH_REF_HASH_LEN = exports.FILE_UPDATE = exports.FILE_DELETE = exports.FILE_CREATE = exports.ERROR = exports.ENV_CHANGE = exports.ATLASPACK_VERSION = void 0;
|
|
7
7
|
var _package = require("../package.json");
|
|
8
|
-
// $FlowFixMe
|
|
9
8
|
const ATLASPACK_VERSION = exports.ATLASPACK_VERSION = _package.version;
|
|
10
9
|
const HASH_REF_PREFIX = exports.HASH_REF_PREFIX = 'HASH_REF_';
|
|
11
10
|
const HASH_REF_HASH_LEN = exports.HASH_REF_HASH_LEN = 16;
|
|
@@ -4,8 +4,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = dumpGraphToGraphViz;
|
|
7
|
-
var _BundleGraph = require("./BundleGraph");
|
|
8
|
-
var _RequestTracker = require("./RequestTracker");
|
|
9
7
|
function _path() {
|
|
10
8
|
const data = _interopRequireDefault(require("path"));
|
|
11
9
|
_path = function () {
|
|
@@ -47,13 +45,13 @@ const TYPE_COLORS = {
|
|
|
47
45
|
};
|
|
48
46
|
async function dumpGraphToGraphViz(graph, name, edgeTypes) {
|
|
49
47
|
var _globalThis$ATLASPACK;
|
|
50
|
-
if (
|
|
48
|
+
if (process.env.ATLASPACK_BUILD_ENV === 'production' && !process.env.ATLASPACK_BUILD_REPL) {
|
|
51
49
|
return;
|
|
52
50
|
}
|
|
53
|
-
let mode = process.env.ATLASPACK_BUILD_REPL ? //
|
|
51
|
+
let mode = process.env.ATLASPACK_BUILD_REPL ? // @ts-expect-error TS7017
|
|
54
52
|
(_globalThis$ATLASPACK = globalThis.ATLASPACK_DUMP_GRAPHVIZ) === null || _globalThis$ATLASPACK === void 0 ? void 0 : _globalThis$ATLASPACK.mode : process.env.ATLASPACK_DUMP_GRAPHVIZ;
|
|
55
53
|
|
|
56
|
-
//
|
|
54
|
+
// @ts-expect-error TS2367
|
|
57
55
|
if (mode == null || mode == false) {
|
|
58
56
|
return;
|
|
59
57
|
}
|
|
@@ -61,38 +59,57 @@ async function dumpGraphToGraphViz(graph, name, edgeTypes) {
|
|
|
61
59
|
let GraphVizGraph = require('graphviz/lib/deps/graph').Graph;
|
|
62
60
|
let g = new GraphVizGraph(null, 'G');
|
|
63
61
|
g.type = 'digraph';
|
|
64
|
-
// $FlowFixMe
|
|
65
62
|
for (let [id, node] of graph.nodes.entries()) {
|
|
66
63
|
if (node == null) continue;
|
|
67
64
|
let n = g.addNode(nodeId(id));
|
|
68
|
-
//
|
|
65
|
+
// @ts-expect-error TS7053
|
|
69
66
|
n.set('color', COLORS[node.type || 'default']);
|
|
70
67
|
n.set('shape', 'box');
|
|
71
68
|
n.set('style', 'filled');
|
|
72
69
|
let label;
|
|
73
70
|
if (typeof node === 'string') {
|
|
74
71
|
label = node;
|
|
72
|
+
// @ts-expect-error TS2339
|
|
75
73
|
} else if (node.assets) {
|
|
74
|
+
// @ts-expect-error TS2339
|
|
76
75
|
label = `(${nodeId(id)}), (assetIds: ${[...node.assets].map(a => {
|
|
77
76
|
let arr = a.filePath.split('/');
|
|
78
77
|
return arr[arr.length - 1];
|
|
79
|
-
})
|
|
78
|
+
})
|
|
79
|
+
// @ts-expect-error TS2339
|
|
80
|
+
.join(', ')}) (sourceBundles: ${[...node.sourceBundles].join(', '
|
|
81
|
+
// @ts-expect-error TS2339
|
|
82
|
+
)}) (bb ${node.bundleBehavior ?? 'none'})`;
|
|
83
|
+
// @ts-expect-error TS2339
|
|
80
84
|
} else if (node.type) {
|
|
85
|
+
// @ts-expect-error TS2339
|
|
81
86
|
label = `[${(0, _graph().fromNodeId)(id)}] ${node.type || 'No Type'}: [${node.id}]: `;
|
|
87
|
+
// @ts-expect-error TS2339
|
|
82
88
|
if (node.type === 'dependency') {
|
|
89
|
+
// @ts-expect-error TS2339
|
|
83
90
|
label += node.value.specifier;
|
|
84
91
|
let parts = [];
|
|
92
|
+
// @ts-expect-error TS2339
|
|
85
93
|
if (node.value.priority !== _types.Priority.sync) {
|
|
86
94
|
var _Object$entries$find;
|
|
87
|
-
parts.push((_Object$entries$find = Object.entries(_types.Priority).find(
|
|
95
|
+
parts.push((_Object$entries$find = Object.entries(_types.Priority).find(
|
|
96
|
+
// @ts-expect-error TS2339
|
|
97
|
+
([, v]) => v === node.value.priority)) === null || _Object$entries$find === void 0 ? void 0 : _Object$entries$find[0]);
|
|
88
98
|
}
|
|
99
|
+
// @ts-expect-error TS2339
|
|
89
100
|
if (node.value.isOptional) parts.push('optional');
|
|
101
|
+
// @ts-expect-error TS2339
|
|
90
102
|
if (node.value.specifierType === _types.SpecifierType.url) parts.push('url');
|
|
103
|
+
// @ts-expect-error TS2339
|
|
91
104
|
if (node.hasDeferred) parts.push('deferred');
|
|
105
|
+
// @ts-expect-error TS2339
|
|
92
106
|
if (node.deferred) parts.push('deferred');
|
|
107
|
+
// @ts-expect-error TS2339
|
|
93
108
|
if (node.excluded) parts.push('excluded');
|
|
94
109
|
if (parts.length) label += ' (' + parts.join(', ') + ')';
|
|
110
|
+
// @ts-expect-error TS2339
|
|
95
111
|
if (node.value.env) label += ` (${getEnvDescription(node.value.env)})`;
|
|
112
|
+
// @ts-expect-error TS2339
|
|
96
113
|
let depSymbols = node.value.symbols;
|
|
97
114
|
if (detailedSymbols) {
|
|
98
115
|
if (depSymbols) {
|
|
@@ -107,11 +124,17 @@ async function dumpGraphToGraphViz(graph, name, edgeTypes) {
|
|
|
107
124
|
if (weakSymbols.length) {
|
|
108
125
|
label += '\\nweakSymbols: ' + weakSymbols.join(',');
|
|
109
126
|
}
|
|
127
|
+
// @ts-expect-error TS2339
|
|
110
128
|
if (node.usedSymbolsUp.size > 0) {
|
|
111
|
-
label += '\\nusedSymbolsUp: ' +
|
|
129
|
+
label += '\\nusedSymbolsUp: ' +
|
|
130
|
+
// @ts-expect-error TS2339
|
|
131
|
+
[...node.usedSymbolsUp].map(([s, sAsset]) => sAsset ? `${s}(${sAsset.asset}.${sAsset.symbol ?? ''})` : sAsset === null ? `${s}(external)` : `${s}(ambiguous)`).join(',');
|
|
112
132
|
}
|
|
133
|
+
// @ts-expect-error TS2339
|
|
113
134
|
if (node.usedSymbolsDown.size > 0) {
|
|
114
|
-
label +=
|
|
135
|
+
label +=
|
|
136
|
+
// @ts-expect-error TS2339
|
|
137
|
+
'\\nusedSymbolsDown: ' + [...node.usedSymbolsDown].join(',');
|
|
115
138
|
}
|
|
116
139
|
// if (node.usedSymbolsDownDirty) label += '\\nusedSymbolsDownDirty';
|
|
117
140
|
// if (node.usedSymbolsUpDirtyDown)
|
|
@@ -121,17 +144,28 @@ async function dumpGraphToGraphViz(graph, name, edgeTypes) {
|
|
|
121
144
|
label += '\\nsymbols: cleared';
|
|
122
145
|
}
|
|
123
146
|
}
|
|
147
|
+
// @ts-expect-error TS2339
|
|
124
148
|
} else if (node.type === 'asset') {
|
|
125
|
-
label +=
|
|
149
|
+
label +=
|
|
150
|
+
// @ts-expect-error TS2339
|
|
151
|
+
_path().default.basename((0, _projectPath.fromProjectPathRelative)(node.value.filePath)) + '#' +
|
|
152
|
+
// @ts-expect-error TS2339
|
|
153
|
+
node.value.type;
|
|
126
154
|
if (detailedSymbols) {
|
|
155
|
+
// @ts-expect-error TS2339
|
|
127
156
|
if (!node.value.symbols) {
|
|
128
157
|
label += '\\nsymbols: cleared';
|
|
158
|
+
// @ts-expect-error TS2339
|
|
129
159
|
} else if (node.value.symbols.size) {
|
|
130
|
-
label += '\\nsymbols: ' +
|
|
160
|
+
label += '\\nsymbols: ' +
|
|
161
|
+
// @ts-expect-error TS2339
|
|
162
|
+
[...node.value.symbols].map(([e, {
|
|
131
163
|
local
|
|
132
164
|
}]) => [e, local]).join(';');
|
|
133
165
|
}
|
|
166
|
+
// @ts-expect-error TS2339
|
|
134
167
|
if (node.usedSymbols.size) {
|
|
168
|
+
// @ts-expect-error TS2339
|
|
135
169
|
label += '\\nusedSymbols: ' + [...node.usedSymbols].join(',');
|
|
136
170
|
}
|
|
137
171
|
// if (node.usedSymbolsDownDirty) label += '\\nusedSymbolsDownDirty';
|
|
@@ -139,21 +173,38 @@ async function dumpGraphToGraphViz(graph, name, edgeTypes) {
|
|
|
139
173
|
} else {
|
|
140
174
|
label += '\\nsymbols: cleared';
|
|
141
175
|
}
|
|
176
|
+
// @ts-expect-error TS2339
|
|
142
177
|
} else if (node.type === 'asset_group') {
|
|
178
|
+
// @ts-expect-error TS2339
|
|
143
179
|
if (node.deferred) label += '(deferred)';
|
|
180
|
+
// @ts-expect-error TS2339
|
|
144
181
|
} else if (node.type === 'file') {
|
|
182
|
+
// @ts-expect-error TS2339
|
|
145
183
|
label += _path().default.basename(node.id);
|
|
184
|
+
// @ts-expect-error TS2339
|
|
146
185
|
} else if (node.type === 'transformer_request') {
|
|
147
|
-
label +=
|
|
186
|
+
label +=
|
|
187
|
+
// @ts-expect-error TS2339
|
|
188
|
+
_path().default.basename(node.value.filePath) +
|
|
189
|
+
// @ts-expect-error TS2339
|
|
190
|
+
` (${getEnvDescription(node.value.env)})`;
|
|
191
|
+
// @ts-expect-error TS2339
|
|
148
192
|
} else if (node.type === 'bundle') {
|
|
149
193
|
let parts = [];
|
|
194
|
+
// @ts-expect-error TS2339
|
|
150
195
|
if (node.value.needsStableName) parts.push('stable name');
|
|
196
|
+
// @ts-expect-error TS2339
|
|
151
197
|
parts.push(node.value.name);
|
|
198
|
+
// @ts-expect-error TS2339
|
|
152
199
|
parts.push('bb:' + (node.value.bundleBehavior ?? 'null'));
|
|
200
|
+
// @ts-expect-error TS2339
|
|
153
201
|
if (node.value.isPlaceholder) parts.push('placeholder');
|
|
154
202
|
if (parts.length) label += ' (' + parts.join(', ') + ')';
|
|
203
|
+
// @ts-expect-error TS2339
|
|
155
204
|
if (node.value.env) label += ` (${getEnvDescription(node.value.env)})`;
|
|
205
|
+
// @ts-expect-error TS2339
|
|
156
206
|
} else if (node.type === 'request') {
|
|
207
|
+
// @ts-expect-error TS2339
|
|
157
208
|
label = node.requestType + ':' + node.id;
|
|
158
209
|
}
|
|
159
210
|
}
|
|
@@ -163,10 +214,13 @@ async function dumpGraphToGraphViz(graph, name, edgeTypes) {
|
|
|
163
214
|
if (edgeTypes) {
|
|
164
215
|
edgeNames = Object.fromEntries(Object.entries(edgeTypes).map(([k, v]) => [v, k]));
|
|
165
216
|
}
|
|
217
|
+
|
|
218
|
+
// @ts-expect-error TS2488
|
|
166
219
|
for (let edge of graph.getAllEdges()) {
|
|
167
220
|
let gEdge = g.addEdge(nodeId(edge.from), nodeId(edge.to));
|
|
168
221
|
let color = null;
|
|
169
222
|
if (edge.type != 1 && edgeNames) {
|
|
223
|
+
// @ts-expect-error TS7053
|
|
170
224
|
color = TYPE_COLORS[edgeNames[edge.type]];
|
|
171
225
|
}
|
|
172
226
|
if (color != null) {
|
|
@@ -175,7 +229,7 @@ async function dumpGraphToGraphViz(graph, name, edgeTypes) {
|
|
|
175
229
|
}
|
|
176
230
|
if (process.env.ATLASPACK_BUILD_REPL) {
|
|
177
231
|
var _globalThis$ATLASPACK2;
|
|
178
|
-
//
|
|
232
|
+
// @ts-expect-error TS7017
|
|
179
233
|
(_globalThis$ATLASPACK2 = globalThis.ATLASPACK_DUMP_GRAPHVIZ) === null || _globalThis$ATLASPACK2 === void 0 || _globalThis$ATLASPACK2.call(globalThis, name, g.to_dot());
|
|
180
234
|
} else {
|
|
181
235
|
const tempy = require('tempy');
|
|
@@ -187,8 +241,9 @@ async function dumpGraphToGraphViz(graph, name, edgeTypes) {
|
|
|
187
241
|
console.log('Dumped', tmp);
|
|
188
242
|
}
|
|
189
243
|
}
|
|
244
|
+
|
|
245
|
+
// @ts-expect-error TS2552
|
|
190
246
|
function nodeId(id) {
|
|
191
|
-
// $FlowFixMe
|
|
192
247
|
return `node${id}`;
|
|
193
248
|
}
|
|
194
249
|
function getEnvDescription(env) {
|
package/lib/index.js
CHANGED
|
@@ -4,13 +4,25 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
var _exportNames = {
|
|
7
|
+
EnvironmentManager: true,
|
|
7
8
|
Atlaspack: true,
|
|
8
9
|
Parcel: true,
|
|
9
10
|
BuildError: true,
|
|
10
11
|
createWorkerFarm: true,
|
|
11
12
|
INTERNAL_RESOLVE: true,
|
|
12
|
-
INTERNAL_TRANSFORM: true
|
|
13
|
+
INTERNAL_TRANSFORM: true,
|
|
14
|
+
WORKER_PATH: true,
|
|
15
|
+
ATLASPACK_VERSION: true,
|
|
16
|
+
resolveOptions: true,
|
|
17
|
+
createEnvironment: true,
|
|
18
|
+
Environment: true
|
|
13
19
|
};
|
|
20
|
+
Object.defineProperty(exports, "ATLASPACK_VERSION", {
|
|
21
|
+
enumerable: true,
|
|
22
|
+
get: function () {
|
|
23
|
+
return _constants.ATLASPACK_VERSION;
|
|
24
|
+
}
|
|
25
|
+
});
|
|
14
26
|
Object.defineProperty(exports, "Atlaspack", {
|
|
15
27
|
enumerable: true,
|
|
16
28
|
get: function () {
|
|
@@ -23,6 +35,13 @@ Object.defineProperty(exports, "BuildError", {
|
|
|
23
35
|
return _Atlaspack.BuildError;
|
|
24
36
|
}
|
|
25
37
|
});
|
|
38
|
+
Object.defineProperty(exports, "Environment", {
|
|
39
|
+
enumerable: true,
|
|
40
|
+
get: function () {
|
|
41
|
+
return _Environment2.default;
|
|
42
|
+
}
|
|
43
|
+
});
|
|
44
|
+
exports.EnvironmentManager = void 0;
|
|
26
45
|
Object.defineProperty(exports, "INTERNAL_RESOLVE", {
|
|
27
46
|
enumerable: true,
|
|
28
47
|
get: function () {
|
|
@@ -41,6 +60,18 @@ Object.defineProperty(exports, "Parcel", {
|
|
|
41
60
|
return _Atlaspack.default;
|
|
42
61
|
}
|
|
43
62
|
});
|
|
63
|
+
Object.defineProperty(exports, "WORKER_PATH", {
|
|
64
|
+
enumerable: true,
|
|
65
|
+
get: function () {
|
|
66
|
+
return _Atlaspack.WORKER_PATH;
|
|
67
|
+
}
|
|
68
|
+
});
|
|
69
|
+
Object.defineProperty(exports, "createEnvironment", {
|
|
70
|
+
enumerable: true,
|
|
71
|
+
get: function () {
|
|
72
|
+
return _Environment.createEnvironment;
|
|
73
|
+
}
|
|
74
|
+
});
|
|
44
75
|
Object.defineProperty(exports, "createWorkerFarm", {
|
|
45
76
|
enumerable: true,
|
|
46
77
|
get: function () {
|
|
@@ -53,7 +84,19 @@ Object.defineProperty(exports, "default", {
|
|
|
53
84
|
return _Atlaspack.default;
|
|
54
85
|
}
|
|
55
86
|
});
|
|
87
|
+
Object.defineProperty(exports, "resolveOptions", {
|
|
88
|
+
enumerable: true,
|
|
89
|
+
get: function () {
|
|
90
|
+
return _resolveOptions.default;
|
|
91
|
+
}
|
|
92
|
+
});
|
|
93
|
+
var EnvironmentManager = _interopRequireWildcard(require("./EnvironmentManager"));
|
|
94
|
+
exports.EnvironmentManager = EnvironmentManager;
|
|
56
95
|
var _Atlaspack = _interopRequireWildcard(require("./Atlaspack"));
|
|
96
|
+
var _constants = require("./constants");
|
|
97
|
+
var _resolveOptions = _interopRequireDefault(require("./resolveOptions"));
|
|
98
|
+
var _Environment = require("./Environment");
|
|
99
|
+
var _Environment2 = _interopRequireDefault(require("./public/Environment"));
|
|
57
100
|
var _atlaspackV = require("./atlaspack-v3");
|
|
58
101
|
Object.keys(_atlaspackV).forEach(function (key) {
|
|
59
102
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -66,5 +109,6 @@ Object.keys(_atlaspackV).forEach(function (key) {
|
|
|
66
109
|
}
|
|
67
110
|
});
|
|
68
111
|
});
|
|
112
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
69
113
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
70
114
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|