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

v0.1.3 -- (env/deps): use agilgur5/tsdx fork for esModuleInterop etc #24

Merged
merged 2 commits into from
Dec 4, 2019

Commits on Dec 4, 2019

  1. (env/deps): use agilgur5/tsdx fork for esModuleInterop etc

    - this uses my fork which merged my PR/commit that fixes the missing
      __esModule in CJS build output
      - which has been an issue in this library since adopting tsdx, as
        that's still an undocumented bug in tsdx
        - the bug means that default imports get transpiled to x = require
          instead of { default: x } = require
          - which affects anyone using CJS and importing the default export
            - and most apps still transpile down, as do most test runners,
              so basically it affects almost everyone using the default
        - for more details, see #12
      - until this fix is merged and released in the root library, will
        be using this fork
    
    - it also has my recently merged PR/commit that changes the cacheRoot
      to ./node_modules/.cache/ instead of ./rts2_cache_* directories
      - can remove them from gitignore and they no longer clutter app root
    agilgur5 committed Dec 4, 2019
    Configuration menu
    Copy the full SHA
    ed27858 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b2cc981 View commit details
    Browse the repository at this point in the history