An error occurred fetching the project authors.
  1. 14 Jun, 2021 1 commit
  2. 23 Dec, 2020 1 commit
  3. 17 Aug, 2020 1 commit
    • Vitaly Slobodin's avatar
      Fix imports orders in JavaScript · fb22121e
      Vitaly Slobodin authored
      We follow this imports order:
      // 1. "external" modules
      import _ from 'lodash';
      import chalk from 'chalk';
      // 2. "internal" and aliased modules
      import foo from 'src/foo';
      // 3. modules from a "parent" directory
      import foo from '../foo';
      import qux from '../../foo/qux';
      // 4. "sibling" modules from the same or a sibling's directory
      import bar from './bar';
      import baz from './bar/baz';
      // 5. "index" of the current directory
      import main from './';
      fb22121e
  4. 04 Jun, 2020 1 commit
    • Paul Slaughter's avatar
      Replace ide_router export with factory function · e7148253
      Paul Slaughter authored
      - Creates factory function for router that takes
        in a store reference.
      - Updates store to use router module instead of
        reference to router singleton
      - Use sync_router_and_store utility
      
      This allows ide_router not to be coupled to a
      singleton store instance, but accept this as
      a parameter. This helps greatly with some test
      set up and breaking the cyclical dependency.
      e7148253
  5. 06 Dec, 2019 1 commit
  6. 19 Jul, 2018 1 commit