influxdb/chronograf/ui
Andrew Watkins 09879fa221
Merge pull request #498 from influxdata/cherry/flux-connection-page
feature(chronograf) flux connections page (#4026)
2018-07-27 13:57:12 -07:00
..
assets/images Move entire codebase into a subdirectory called chronograf 2018-07-19 16:37:21 -04:00
mocks Flux/connections page (#4026) 2018-07-27 10:05:02 -07:00
src Merge pull request #498 from influxdata/cherry/flux-connection-page 2018-07-27 13:57:12 -07:00
test Flux/connections page (#4026) 2018-07-27 10:05:02 -07:00
webpack chore(chronograf): Get Chronograf to "work" as in 1.6.x (w/o Kapacitor) 2018-07-24 15:13:08 -07:00
.babelrc Move entire codebase into a subdirectory called chronograf 2018-07-19 16:37:21 -04: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
.gitignore 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 Move entire codebase into a subdirectory called chronograf 2018-07-19 16:37:21 -04:00
package.json Move entire codebase into a subdirectory called chronograf 2018-07-19 16:37:21 -04:00
tsconfig.json Move entire codebase into a subdirectory called chronograf 2018-07-19 16:37:21 -04:00
tslint.json Move entire codebase into a subdirectory called chronograf 2018-07-19 16:37:21 -04:00
yarn.lock Move entire codebase into a subdirectory called chronograf 2018-07-19 16:37:21 -04: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.