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

Update dependencies #578

Merged
merged 15 commits into from
Apr 26, 2023
Merged

Update dependencies #578

merged 15 commits into from
Apr 26, 2023

Commits on Apr 20, 2023

  1. Support server command containing spaces

    The default location on macOS contains spaces (Application Support)
    scotttrinh committed Apr 20, 2023
    Configuration menu
    Copy the full SHA
    21c0b7c View commit details
    Browse the repository at this point in the history
  2. Tests were failing on Node 18

    When using defineProperties, any properties that are set default to
    writable: false unless you specify otherwise. Moving the assignment
    before the defineProperties call fixes the issue and leaves it ambiguous
    as to whether the property is writable or not.
    scotttrinh committed Apr 20, 2023
    Configuration menu
    Copy the full SHA
    933f6ff View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2023

  1. Configuration menu
    Copy the full SHA
    ee7f718 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4ed81ac View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    84db343 View commit details
    Browse the repository at this point in the history
  4. Ehhh...

    scotttrinh committed Apr 21, 2023
    Configuration menu
    Copy the full SHA
    c4ebac7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    33d15a1 View commit details
    Browse the repository at this point in the history
  6. Revert all changes to support spaces in binary

    We'll tackle this later to avoid a noisy PR
    scotttrinh committed Apr 21, 2023
    Configuration menu
    Copy the full SHA
    30f09b9 View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2023

  1. Configuration menu
    Copy the full SHA
    5e1afdf View commit details
    Browse the repository at this point in the history
  2. Add (unused) ESLint + TypeScript config

    Will slowly start to transition to checking with ESLint since TSLint is deprecated
    scotttrinh committed Apr 25, 2023
    Configuration menu
    Copy the full SHA
    a5dda16 View commit details
    Browse the repository at this point in the history
  3. Add ESLint to CI workflow

    Ignores any failures for now
    scotttrinh committed Apr 25, 2023
    Configuration menu
    Copy the full SHA
    b624c64 View commit details
    Browse the repository at this point in the history
  4. Remove deprecated importsNotUsedAsValues tsconfig

    This has become a linting concern instead of a compiler concern. To get
    the same check to ensure we use the `type` import, added an ESLint rule
    that checks. No TSLint rule exists that covered this case.
    scotttrinh committed Apr 25, 2023
    Configuration menu
    Copy the full SHA
    dad90ef View commit details
    Browse the repository at this point in the history
  5. Add jest types to packages

    scotttrinh committed Apr 25, 2023
    Configuration menu
    Copy the full SHA
    e6fa880 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    bdc562e View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2023

  1. Fix LocalDate#toString to match Temporal

    Not sure if/when this changed, but as of right now this matches the
    polyfill source found here:
    
    https://github.com/js-temporal/temporal-polyfill/blob/a5eda13f7ce9d2f2df899c2ac56e92936ec8d1bf/lib/ecmascript.ts#L2679
    scotttrinh committed Apr 26, 2023
    Configuration menu
    Copy the full SHA
    cc76da8 View commit details
    Browse the repository at this point in the history