influxdb/ui
Deniz Kusefoglu 21b64d3456 Fix dashboardIndex which uses import overlay 2019-03-01 14:28:23 -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 Use ResourceCards to display Tasks (#12258) 2019-03-01 14:14:31 -08:00
mocks Place all Task typing in one place 2019-02-28 14:03:03 -08:00
src Fix dashboardIndex which uses import overlay 2019-03-01 14:28:23 -08:00
.browserslistrc
.eslintrc.json Migrate from TSLint to ESLint 2019-02-20 18:15:09 -08:00
.npmrc Make npm less noisy 2019-02-20 18:15:09 -08:00
.prettierrc.json Migrate from TSLint to ESLint 2019-02-20 18:15:09 -08: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
jestSetup.ts test(ui): component integration testing w/ mock redux store (#11577) 2019-01-25 14:08:57 -08:00
package-lock.json Update logs to use api call instead of dummy data 2019-02-27 11:25:40 -08:00
package.json test(e2e/de): function selection (#12253) 2019-02-28 15:05:13 -08:00
testSetup.ts
tsconfig.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.