influxdb/chronograf/ui
Andrew Watkins 410b723beb
feat(user-profile): user profile layout ()
* feat(chrono): user page

* feat: change user profile route

* feat(user_profile): add logout and static markup
2018-10-26 10:19:29 -07:00
..
assets/images feat(logs/page) Add logs page () 2018-10-04 16:28:35 -04:00
mocks fixed inconsistency in links 2018-10-26 17:05:06 +02:00
src feat(user-profile): user profile layout () 2018-10-26 10:19:29 -07:00
.browserslistrc 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 chore(chronograf): Typing connected components and configureStore () 2018-10-12 13:16:32 -07:00
package.json feat(org-view): Chronograf OrgView () 2018-10-23 08:53:15 -07:00
testSetup.ts chore(chronograf): code cleanup () 2018-10-15 11:19:54 -07:00
tsconfig.json Port WebWorker utilities 2018-10-22 16:33:11 -07:00
tslint.json feat(org-view): Chronograf OrgView () 2018-10-23 08:53:15 -07:00
yarn.lock feat(user-profile): user profile layout () 2018-10-26 10:19:29 -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.