• Joe Haddad's avatar
    Add `react-error-overlay` package (#2111) · 70768b32
    Joe Haddad authored
    * ༼ つ ◕_◕ ༽つ stack-frame-overlay
    
    * Fix linting
    
    * Remove auto overlay
    
    * Fix e2e
    
    * Pull in the rest
    
    * Appease flow
    
    * Correct dep
    
    * Remove old repo references
    
    * Check flow on test
    
    * Test overlay in e2e
    
    * Add cross env
    
    * Rename package
    
    * Make sure it gets built post-install
    
    * Update the README
    
    * Remove extra builds now that there's a postinstall script
    
    * Revert "Remove extra builds now that there's a postinstall script"
    
    This reverts commit 8bf601db.
    
    * Remove broken script
    
    * Fix some dev ergo
    70768b32
index.js 189 bytes
/* @flow */
import { inject, uninject } from './overlay';
inject();
if (module.hot && typeof module.hot.dispose === 'function') {
  module.hot.dispose(function() {
    uninject();
  });