influxdb/ui
Andrew Watkins 796e0d136f Convert function selector 2018-05-12 22:21:19 -07:00
..
assets/images
mocks Revert "WIP Test FieldList" 2018-05-10 11:41:05 -07:00
src Convert function selector 2018-05-12 22:21:19 -07:00
test Convert MOAR to TS 2018-05-12 22:21:19 -07:00
webpack WIP introduce filter builder 2018-05-09 17:27:59 -07:00
.babelrc
.eslintignore
.eslintrc
.gitignore
.npmrc
README.md
jest.config.js
package.json Provides checkbox for disabling kapacitor services 2018-05-10 00:24:24 -07:00
tsconfig.json
tslint.json
yarn.lock Provides checkbox for disabling kapacitor services 2018-05-10 00:24:24 -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.