influxdb/ui
Andrew Watkins f69341dd9f Update database list to include retention 2017-10-25 10:08:54 -07:00
..
.storybook
assets/images Use a new interaction pattern and new styles for file upload 2017-08-17 17:00:22 -07:00
spec Merge pull request #2128 from influxdata/feature/qc-v2-alias 2017-10-20 20:32:33 -07:00
src Update database list to include retention 2017-10-25 10:08:54 -07:00
stories
tests Add more integration test instrumentation for Query Builder test. Increase screen test resolution. 2017-08-09 18:03:32 -07:00
webpack Fix prebuilt warning with webpacks noParse 2017-10-20 12:01:41 -07:00
.babelrc
.eslintignore
.eslintrc Ignore ref binds 2017-08-17 09:33:36 -07:00
.gitignore Add tern-project to gitignore 2017-10-24 13:00:40 -07:00
.npmrc
README.md Improvements to npm scripts 2017-08-11 01:53:37 +00:00
karma.conf.js Change some remaining npm mentions to yarn 2017-08-10 16:51:39 -07:00
nightwatch.json Add more integration test instrumentation for Query Builder test. Increase screen test resolution. 2017-08-09 18:03:32 -07:00
package.json Update changelog and version number for 1.3.10.0 2017-10-24 09:34:31 -04:00
storybook.js
yarn.lock Merge pull request #2128 from influxdata/feature/qc-v2-alias 2017-10-20 20:32:33 -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.