influxdb/chronograf/ui
Andrew Watkins f36cc2f009
chore(chronograf): legend rendering
* Make legend work again

* Fix broken tests

* Import proper reducer
2018-08-30 09:04:41 -07:00
..
assets/images Move entire codebase into a subdirectory called chronograf 2018-07-19 16:37:21 -04:00
mocks chore(chronograf): move tests out of test dir 2018-08-29 09:11:01 -07:00
src chore(chronograf): legend rendering 2018-08-30 09:04:41 -07:00
.babelrc chore(chronograf): new build configuration 2018-08-29 11:19:22 -07:00
.eslintignore Move entire codebase into a subdirectory called chronograf 2018-07-19 16:37:21 -04:00
.eslintrc Move entire codebase into a subdirectory called chronograf 2018-07-19 16:37:21 -04:00
.npmrc Move entire codebase into a subdirectory called chronograf 2018-07-19 16:37:21 -04:00
README.md Move entire codebase into a subdirectory called chronograf 2018-07-19 16:37:21 -04:00
jest.config.js chore(chronograf): move tests out of test dir 2018-08-29 09:11:01 -07:00
package.json chore(chronograf): new build configuration 2018-08-29 11:19:22 -07:00
testSetup.js chore(chronograf): move tests out of test dir 2018-08-29 09:11:01 -07:00
tsconfig.json chore(chronograf): new build configuration 2018-08-29 11:19:22 -07:00
tslint.json Move entire codebase into a subdirectory called chronograf 2018-07-19 16:37:21 -04:00
yarn.lock chore(chronograf): new build configuration 2018-08-29 11:19:22 -07:00

README.md

Packages

We are using yarn 0.19.1.

Run yarn run to see a list of available tasks.

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 yarn test, from within the /ui directory. For more detailed reporting, use yarn test -- --reporters=verbose.