influxdb/ui
Jared Scheib 6ab9eefea1 Prevent Custom Time Range as option in Kapacitor Rule Alerts 2017-07-25 17:12:56 -07:00
..
.storybook Add React Storybook, in addition to stories and stubs for ValuesSection. Also… Add a nifty corsless proxy courtesy of yt. 2017-01-04 16:02:11 -08:00
assets/images Remove custom cursors 2017-04-04 17:41:42 -07:00
spec Fix Kapacitor queryConfigs tests 2017-07-24 21:56:35 -07:00
src Prevent Custom Time Range as option in Kapacitor Rule Alerts 2017-07-25 17:12:56 -07:00
stories Small styles changes. 2017-03-03 15:25:12 -07:00
webpack Use more supported .cur format instead of .png 2017-04-04 12:22:47 -07:00
.babelrc Refactor to use async/await. 2017-01-12 14:59:07 -07:00
.eslintignore Bring over enterprise ui and configuration 2016-09-19 13:45:05 -07:00
.eslintrc Add prettier to an eslint rule. 2017-07-20 11:12:48 -06:00
.gitignore Bring over enterprise ui and configuration 2016-09-19 13:45:05 -07:00
.npmrc Bring over enterprise ui and configuration 2016-09-19 13:45:05 -07:00
README.md Make test command consistent 2017-07-24 12:55:09 -07:00
karma.conf.js Update comment with command line option 2017-07-24 12:49:29 -07:00
package.json Release 1.3.5.0 2017-07-25 15:08:02 -05:00
storybook.js Storybook fixes. Add stateful class MultiSelectDropdown shared component. Add Select Roles story for that component. 2017-03-01 13:32:54 -07:00
yarn.lock Separate Kapacitor & Data Explorer queryConfig actions & reducers 2017-07-24 21:31:54 -07:00

README.md

Packages

We are using yarn 0.19.1.

Adding new packages

To add a new package, run

yarn add packageName

Adding devDependency

yarn add --dev packageName

Updating a package

First, run

yarn outdated

... to determine which packages may need upgrading.

We really should not upgrade all packages at once, but, one at a time and make darn sure to test.

To upgrade a single package named packageName:

yarn upgrade packageName

Testing

Tests can be run via command line with npm test, from within the /ui directory. For more detailed reporting, use npm test -- --reporters=verbose.