Commit Graph

15 Commits (6fc4db5a17b444ab07eca8310c1cd156cf015018)

Author SHA1 Message Date
Tim Raymond 9a3b5e2db0 Pin ESLint to 3.5.x
In 3.9.x, ESLint changed how many spaces are expected on a trailing
parens following a return. Previously it expected:

```
01234567890
  return (
    <div>
    </div>
    );
01234567890
    ^~~~~~~~ It previously expected 5 spaces here

01234567890
  return (
    <div>
    </div>
  );
01234567890
  ^~~~~~~~~~ Now it wants 3
```

Until we're ready to explicitly make that change, we're going to pin to
3.5.x (which expects 5 spaces in the example above.
2016-11-02 13:43:59 -04:00
Tim Raymond a6300f25f0 Wire up /mappings API to LayoutsStore
This makes the /mappings endpoint return real data based off of the
layouts seen within the LayoutsStore.
2016-10-28 18:00:44 -04:00
Will Piers 80c7ec6a45 Render notifications and add dismissal 2016-10-20 13:32:09 -07:00
Will Piers df76e23ca5 Set up action and reducer 2016-10-20 13:32:09 -07:00
Andrew Watkins d564f75da3 Split vendor dependencies into chunks 2016-09-30 13:16:24 -07:00
Andrew Watkins e8c6ce1d81 Move loader to dev dep 2016-09-28 10:29:04 -07:00
Andrew Watkins b371e6ea91 Allow import of static png and jpg in scss 2016-09-27 12:54:32 -07:00
Will Faurot 6ae2ca67c1 Remove old test scripts; add npm test 2016-09-20 11:50:32 -07:00
Will Faurot 72e7e031cf Add karma packages 2016-09-20 11:50:07 -07:00
Will Faurot 4be3b32da8 Bump lint-related packages 2016-09-20 11:49:30 -07:00
Will Piers 5d9b071a15 Add build:dev option to build with dev config one time 2016-09-19 13:45:05 -07:00
Will Piers c528d1186e Have webpack build html file into output 2016-09-19 13:45:05 -07:00
Chris Goller 840b00b4d0 Update circle and makefile to build and test everything.
Signed-off-by: Will Piers <wpiers0405@gmail.com>
2016-09-19 13:45:05 -07:00
Will Piers d7ae615e37 Bring over enterprise ui and configuration
Signed-off-by: Andrew Watkins <watts@influxdb.com>
2016-09-19 13:45:05 -07:00
Will Piers 133da5a14f Use create-react-app 2016-09-09 16:10:54 -07:00