Skip to content

v0.8.0

Compare
Choose a tag to compare
@jaredpalmer jaredpalmer released this 14 Aug 16:34
· 425 commits to master since this release

Improvements

  • Added experimental --extractErrors flag
  • Added ability to specify path to a custom tsconfig.json
  • Added --template flag to tsdx create So you can run npx tsdx create --template=react now.
  • Relaxed Jest's testMatch flag and made it overridable..
  • Added tsdx lint command with eslint x typescript x prettier.

Bugfixes

  • Gracefully exit with code 1 when build failed (breaking change)
  • Ignore ESM cache

Internal Stuff

  • Dropped CircleCI for GitHub CI!

Migration Guide

To take advantage of tsdx lint, simply add a npm script to your package.json like so.

{
  "scripts": {
     "start": "tsdx watch",
     "build": "tsdx build",
+    "lint": "tsdx lint"
  }
}

Commits

  • Add comma after lint command ef5a9c2
  • Update README.md c36c1a8
  • Add tsdx lint command to new project pkg.json 5a319ac
  • GitHub CI (#177) dd4123d
  • Add tsdx lint command (#99) e2f2983
  • Add some more info about extractErrors 1a2e50c
  • Update readme for errors e4da38c
  • Update createJestConfig.ts testMatch to allow for other folder… (#159) f6ecdc9
  • Ignore esm cache's locally 06b9b68
  • Add error code extract and transform (#138) a20429d
  • Provide ability to preserve console output during watch (#158) 37d7664
  • add netlify deploy instructions to react readme (#157) a382fd2
  • Add template flag to create command (#163) 8247f0a
  • Gracefully exit with code 1 when build failed (#160) c850b5c
  • Merge pull request #164 from leonardodino/react-doctype 8455d28
  • Add doctype to react template html file cfc12fe
  • Merge pull request #153 from enesTufekci/custom-tsconfig-update-readme 7b00e51
  • add custom tsconfig flag usage to readme eef0b31
  • Merge pull request #1 from palmerhq/master 68fab9e

v0.7.2...v0.8.0