influxdb/ui
Deniz Kusefoglu 4978fd7bc1 Remove console.log 2019-03-05 17:08:30 -08:00
..
assets/images
cypress fix: flux imports in tasks (#12366) 2019-03-05 13:32:04 -08:00
mocks fix(tasks): replace organization on tasks with org name string 2019-03-05 14:43:50 -08:00
src Remove console.log 2019-03-05 17:08:30 -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
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
package-lock.json fix: flux imports in tasks (#12366) 2019-03-05 13:32:04 -08:00
package.json fix: flux imports in tasks (#12366) 2019-03-05 13:32:04 -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.