Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jaredpalmer/tsdx
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.13.1
Choose a base ref
...
head repository: jaredpalmer/tsdx
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.13.2
Choose a head ref
  • 11 commits
  • 10 files changed
  • 3 contributors

Commits on Apr 8, 2020

  1. docs: add ambroseus as a contributor (#670)

    * docs: update README.md [skip ci]
    
    * docs: update .all-contributorsrc [skip ci]
    
    Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
    allcontributors[bot] authored Apr 8, 2020
    Configuration menu
    Copy the full SHA
    72c06b9 View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2020

  1. (clean): remove redundant set of watch opts (#671)

    - another thing that was missed in #130
    - these sets are already done in normalizeOpts, no need to redundantly
      perform them again
      - fortunately this wasn't inconsistent with normalizeOpts, so no
        harm done before this got out
    
    Co-Authored-By: Kotaro Sugawara <[email protected]>
    agilgur5 and kotarella1110 authored Apr 11, 2020
    Configuration menu
    Copy the full SHA
    351936e View commit details
    Browse the repository at this point in the history
  2. (fix): @types/jest should be a dep, not a devDep (#672)

    - per bug report, this caused an issue where the @types/jest that was
      installed via `create` would have a version mismatch with the jest
      and jest-related deps used by TSDX
    - and ts-jest's installation instructions also say to install
      @types/jest, so it's kind of a peerDep to it
    
    - also move @types/shelljs to devDeps as it's not needed for usage of
      the CLI, it's only used internally
    agilgur5 authored Apr 11, 2020
    Configuration menu
    Copy the full SHA
    2930943 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2020

  1. (clean): remove redundant tsconfig strict opts in templates (#673)

    - noImplicitAny, noImplicitThis, alwaysStrict, strictNullChecks,
      strictFunctionTypes, and strictPropertyInitialization are already
      enabled by strict, no need to configure them twice
      - beginners could also be confused by redundant options (like I was
        at one point)
        - and including them may have also unintentionally encouraged folks
          to turn them off
    agilgur5 authored Apr 12, 2020
    Configuration menu
    Copy the full SHA
    2dd4396 View commit details
    Browse the repository at this point in the history
  2. (deps/clean): remove unused @types/ms devDep (#674)

    - `ms` dep was removed in df39d02, but not its
      @types/ counterpart
    - @types/ms was added in 7033756 which also removed the only
      usage of `ms`
      - and the function that it was in that was removed was unused anyway
    agilgur5 authored Apr 12, 2020
    Configuration menu
    Copy the full SHA
    eaa5da7 View commit details
    Browse the repository at this point in the history
  3. (deps/types/clean): remove extraneous typings

    - external @types/ are overridden by the package's own internal
      typings, so any @types/ packages on top of that are extraneous
      - and are usually deprecated too; all are in this case
    - execa has had its own typedefs since v2
      - the @types/execa package is very dated at v0.9
    - ora has had its own typedefs since v3.2
      - so @types/ora v3.2 is just a stub
    - ansi-escapes has had its own typedefs since v4
      - @types/ansi-escapes v4 is just a stub
    - camelcase has had its own typedefs since v5.2
      - @types/camelcase v5.2 is just a stub
      - pin camelcase to v5.2+ from 5.0 to ensure it's a version with
        internal typings
    
    - ora also had an unnecessary internal re-declaration too
    - as did ansi-escapes and camelcase
    agilgur5 committed Apr 12, 2020
    Configuration menu
    Copy the full SHA
    c9a719a View commit details
    Browse the repository at this point in the history
  4. (docs/types): add comments to some remaining declarations

    - clarify why some of these internal declarations/re-declarations
      are necessary
      - I tried removing them because I didn't know why they were needed,
        so this documentation should be helpful
    agilgur5 committed Apr 12, 2020
    Configuration menu
    Copy the full SHA
    72092c8 View commit details
    Browse the repository at this point in the history
  5. docs: add rockmandash as a contributor (#676)

    * docs: update README.md [skip ci]
    
    * docs: update .all-contributorsrc [skip ci]
    
    Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
    allcontributors[bot] authored Apr 12, 2020
    Configuration menu
    Copy the full SHA
    92747f8 View commit details
    Browse the repository at this point in the history
  6. (fix/deps): semver should be a dep, not a devDep (#677)

    - it's used in `tsdx create`, definitely not a devDep
      - surprised that this hasn't been reported as a bug before, but
        probably because it's a subdep of another dep so it finds its way
        into most folks' node_modules anyway
    agilgur5 authored Apr 12, 2020
    Configuration menu
    Copy the full SHA
    094fe5e View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2020

  1. docs: add kotarella1110 as a contributor (#680)

    * docs: update README.md [skip ci]
    
    * docs: update .all-contributorsrc [skip ci]
    
    Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
    allcontributors[bot] authored Apr 13, 2020
    Configuration menu
    Copy the full SHA
    51cd32f View commit details
    Browse the repository at this point in the history
  2. v0.13.2

    agilgur5 committed Apr 13, 2020
    Configuration menu
    Copy the full SHA
    3c65bdf View commit details
    Browse the repository at this point in the history
Loading