1. 28 Mar, 2019 2 commits
  2. 27 Mar, 2019 7 commits
  3. 26 Mar, 2019 3 commits
  4. 25 Mar, 2019 8 commits
  5. 21 Mar, 2019 1 commit
    • Robert Knight's avatar
      Enable conditional inclusion of code based on NODE_ENV checks · f5d81fd0
      Robert Knight authored
      Packages in the React ecosystem often include debugging checks guarded
      by:
      
      ```
      if (process.env.NODE_ENV === 'development') { ... }
      ```
      
      OR
      
      ```
      if (process.env.NODE_ENV !== 'production') { ... }
      ```
      
      This commit uses loose-envify to replace the `process.env.$VAR`
      expression with a literal string value when building JS bundles. This enables
      debugging checks in dev builds and causes the minifier to remove the
      code entirely in production builds.
      
      Some packages don't need this because their package.json file includes a
      "browserify" key which already configures this transform, however not
      all of them do. Therefore the transform is configured to run globally.
      f5d81fd0
  6. 19 Mar, 2019 1 commit
  7. 18 Mar, 2019 13 commits
  8. 15 Mar, 2019 3 commits
  9. 14 Mar, 2019 2 commits
    • Hannah Stepanek's avatar
      9c13bd48
    • dwolfe's avatar
      Add new groups menu UX · 14d12872
      dwolfe authored
      * Add Currently Viewing, Featured Groups and My Groups sections
      * Remove leave group icon
      * Remove view group page link as there is no room for it in the UI
      and
user’s are often clicking it accidentally.

      * Remove ability to select groups that are not scoped to the page.

      14d12872