influxdb/ui
Brandon Farmer dd26d46eff
Merge pull request #12007 from influxdata/feat/create-telegraf-config
Extract telegrafs org view to use react router
2019-02-20 10:57:37 -08:00
..
assets/images Update final onboarding step to offer next step options to the user (#11145) 2019-01-16 12:16:56 -08:00
cypress fix(ui): get active source (#12005) 2019-02-20 09:23:18 -08:00
mocks Rename Macro to Variable in generated client imports 2019-02-14 14:54:43 -08:00
src Merge pull request #12007 from influxdata/feat/create-telegraf-config 2019-02-20 10:57:37 -08:00
.browserslistrc chore(ui): move ui from chronograf/ui to ui 2018-10-29 14:00:54 -04:00
Makefile feat(kv): implemented key/value store with end-to-end integration tests 2019-02-19 17:47:19 -06:00
README.md Remove yarn in favor of just npm 2018-11-30 17:02:31 -08:00
cypress.json feat(kv): implemented key/value store with end-to-end integration tests 2019-02-19 17:47:19 -06:00
index.d.ts chore(ui): move ui from chronograf/ui to ui 2018-10-29 14:00:54 -04:00
jestSetup.ts test(ui): component integration testing w/ mock redux store (#11577) 2019-01-25 14:08:57 -08:00
package-lock.json feat(ui): Add custom time range in time range dropdown 2019-02-19 16:43:13 -08:00
package.json feat(ui): Add custom time range in time range dropdown 2019-02-19 16:43:13 -08:00
testSetup.ts chore(ui): move ui from chronograf/ui to ui 2018-10-29 14:00:54 -04:00
tsconfig.json feat(kv): implemented key/value store with end-to-end integration tests 2019-02-19 17:47:19 -06:00
tslint.json feat(kv): implemented key/value store with end-to-end integration tests 2019-02-19 17:47:19 -06:00

README.md

Packages

Adding new packages

To add a new package, run

npm i packageName

Adding devDependency

npm i packageName -D

Updating a package

First, run

npm 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:

npm upgrade packageName

Testing

Tests can be run via command line with npm test, from within the /ui directory. For more detailed reporting, use yarn test -- --reporters=verbose.