influxdb/chronograf/ui
Delmer 23a53d2d2e
Rename logs namespace dropdown (#1034)
Rename namespace to bucket in logs

* Update bucket to match buckets response
* Update logs action to use getBuckets
* rename(logs/page): Renames namespace to bucket
2018-10-11 10:48:53 -04:00
..
assets/images feat(logs/page) Add logs page (#915) 2018-10-04 16:28:35 -04:00
mocks Add VEO overlay to dashboards 2018-10-09 17:18:33 -07:00
src Rename logs namespace dropdown (#1034) 2018-10-11 10:48:53 -04:00
.babelrc Upgrade Chronograf dependencies 2018-10-08 11:44:19 -07:00
.browserslistrc Upgrade Chronograf dependencies 2018-10-08 11:44:19 -07:00
.eslintignore Move entire codebase into a subdirectory called chronograf 2018-07-19 16:37:21 -04:00
.eslintrc Upgrade Chronograf dependencies 2018-10-08 11:44:19 -07:00
.npmrc Move entire codebase into a subdirectory called chronograf 2018-07-19 16:37:21 -04:00
Makefile Upgrade Chronograf dependencies 2018-10-08 11:44:19 -07:00
README.md Move entire codebase into a subdirectory called chronograf 2018-07-19 16:37:21 -04:00
index.d.ts chronograf(v2-views): Introduce new view patterns, linting, and TypeScript 3.x (#901) 2018-09-27 10:46:48 -07:00
jest.config.js Upgrade Chronograf dependencies 2018-10-08 11:44:19 -07:00
package.json Upgrade Chronograf dependencies 2018-10-08 11:44:19 -07:00
testSetup.js chore(chronograf): move tests out of test dir 2018-08-29 09:11:01 -07:00
tsconfig.json chronograf(v2-views): Introduce new view patterns, linting, and TypeScript 3.x (#901) 2018-09-27 10:46:48 -07:00
tslint.json Replace Flux Builder with Data Explorer 2018-10-10 13:12:11 -07:00
yarn.lock Upgrade Chronograf dependencies 2018-10-08 11:44:19 -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.