influxdb/chronograf/ui
Andrew Watkins c78b2ee19a chore(chronograf): Add SourceContext and fix source typing
Co-authored-by: Andrew Watkins <andrew.watkinz@gmail.com>
Co-authored-by: Michael Desa <mjdesa@gmail.com>
2018-07-24 14:23:18 -04:00
..
assets/images Move entire codebase into a subdirectory called chronograf 2018-07-19 16:37:21 -04:00
mocks Move entire codebase into a subdirectory called chronograf 2018-07-19 16:37:21 -04:00
src chore(chronograf): Add SourceContext and fix source typing 2018-07-24 14:23:18 -04:00
test Move entire codebase into a subdirectory called chronograf 2018-07-19 16:37:21 -04:00
webpack Move entire codebase into a subdirectory called chronograf 2018-07-19 16:37:21 -04: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.