Skip to content
This repository was archived by the owner on Jul 13, 2020. It is now read-only.
This repository was archived by the owner on Jul 13, 2020. It is now read-only.

At most 1 dep in depMap #532

@alexisvincent

Description

@alexisvincent

Trace API only keeps the last imported module in System.loads.*.depMap.

So for instance

import a from './a.js'
import b from './b.js'

has a depMap of

{ "./b.js" : "https://localhost:3000/app/b.js" }

while

import b from './b.js'
import a from './a.js'

has a depMap of

{ "./a.js" : "https://localhost:3000/app/a.js" }

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @guybedford@alexisvincent

        Issue actions

          At most 1 dep in depMap · Issue #532 · ModuleLoader/es-module-loader