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

_FULL_SCRIPT_NAME should just become context.this_script #215

Open
samualtnorman opened this issue Nov 27, 2024 · 0 comments
Open

_FULL_SCRIPT_NAME should just become context.this_script #215

samualtnorman opened this issue Nov 27, 2024 · 0 comments

Comments

@samualtnorman
Copy link
Owner

currently

export default () => _FULL_SCRIPT_NAME

becomes (with --no-minify)

function(..._08426x6eyov_PARAMS_) {
  let [] = _08426x6eyov_PARAMS_,
    [_08426x6eyov_SCRIPT_USER_] = _08426x6eyov_PARAMS_[0].this_script.split(".")
  return _08426x6eyov_SCRIPT_USER_ + ".my_script"
}

which is a bit unnecessary.

ideally it should become something like

function(..._08426x6eyov_PARAMS_) {
  let [] = _08426x6eyov_PARAMS_,
    _08426x6eyov_FULL_SCRIPT_NAME_ = _08426x6eyov_PARAMS_[0].this_script
  return _08426x6eyov_FULL_SCRIPT_NAME_
}

and terser can take care of the rest

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant