Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

unmangle import names via import path #61

Open
milahu opened this issue Feb 17, 2024 · 0 comments
Open

unmangle import names via import path #61

milahu opened this issue Feb 17, 2024 · 0 comments
Labels
enhancement New feature or request

Comments

@milahu
Copy link
Contributor

milahu commented Feb 17, 2024

input: mangled import names

import a from "/lib/some-lib-a/index.js"
import b from "/lib/some-lib-b/dist/index.js"
import c from "/lib/some-lib-c/dist/modules/some-module.js"

actual result: preserve the mangled import names a b c

expected result: unmangle import names via import path

import lib_someLibA from "/lib/some-lib-a/index.js";
import lib_someLibB_dist from "/lib/some-lib-b/dist/index.js";
import lib_someLibC_dist_modules_someModule from "/lib/some-lib-c/dist/modules/some-module.js";
@milahu milahu added the enhancement New feature or request label Feb 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant