ui-harness v3.19.0 Release Notes

Release Date: 2016-08-16 // over 7 years ago
  • โž• Added

    • ๐Ÿ— The ability to customise the extensions picked up by webpack when building. See our .uiharness.yml for an example

      # .uiharness.yml
      
      extensions:
          - .web.ts
          - .web.tsx
          - .ts
          - .tsx
          - .js
      
      

Previous changes from v3.17.0

  • โž• Added

    • The ability to add external tools to debug programs, such as the MobX dev tools.

      import DevTools from 'mobx-react-devtools'
      
      ...
      
      this.tools(<DevTools />);