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

feat(scope-manager): reduce generated lib file size #3468

Merged
merged 1 commit into from May 30, 2021

Commits on May 30, 2021

  1. feat(scope-manager): reduce generated lib file size

    The old generation strategy was verbose and thus generated a lot of duplicated code.
    I figured that we can pretty easily reduce this down significantly, which will reduce the package size and make some repo operations faster as we're not loading 500kb files.
    
    before:
    ```bash
    $ du -sh packages/scope-manager/src/lib
    560K    packages/scope-manager/src/lib
    ```
    after:
    ```bash
    $ du -sh packages/scope-manager/src/lib
    320K    packages/scope-manager/src/lib
    ```
    bradzacher committed May 30, 2021
    Copy the full SHA
    9db0d9b View commit details
    Browse the repository at this point in the history