influxdb/ui
Daniel Campbell 084d30bc94 Fix gridsizer recalculation, add scrolling, progress bar styles, increase max width
Co-authored-by: Iris Scholten <ischolten.is@gmail.com>
Co-authored-by: Daniel Campbell <metalwhirlwind@gmail.com>
2018-12-10 18:39:22 -08:00
..
assets/images Add Line Protocol component, tab selection, and add drag and drop import tab. 2018-12-04 11:06:23 -08:00
mocks feat(ui/dataLoaders): Create ui for adding a plugin config 2018-12-10 16:18:16 -08:00
src Fix gridsizer recalculation, add scrolling, progress bar styles, increase max width 2018-12-10 18:39:22 -08:00
.browserslistrc chore(ui): move ui from chronograf/ui to ui 2018-10-29 14:00:54 -04:00
Makefile Remove yarn in favor of just npm 2018-11-30 17:02:31 -08:00
README.md Remove yarn in favor of just npm 2018-11-30 17:02:31 -08:00
index.d.ts chore(ui): move ui from chronograf/ui to ui 2018-10-29 14:00:54 -04:00
package-lock.json feat(token-ui): filter tokens 2018-12-10 14:13:53 -08:00
package.json Create different loading, success and error state for line protocol uploads 2018-12-07 17:06:16 -08:00
testSetup.ts chore(ui): move ui from chronograf/ui to ui 2018-10-29 14:00:54 -04:00
tsconfig.json chore(ui): move ui from chronograf/ui to ui 2018-10-29 14:00:54 -04:00
tslint.json feat(ui/query-builder): introduce SelectorCard component to query builder 2018-12-04 12:25:34 -08:00
yarn.lock Add ability to create notes on a dashboard 2018-11-29 16:41:40 -08:00

README.md

Packages

Adding new packages

To add a new package, run

npm i packageName

Adding devDependency

npm i packageName -D

Updating a package

First, run

npm 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:

npm upgrade packageName

Testing

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