influxdb/ui
Daniel Campbell edc3e37c28
Polish/onboarding buttons (#11000)
* Remove back button on Admin step

* Make wizard button text consistent
2019-01-11 09:27:11 -08:00
..
assets/images Onboarding responsive styles (#2352) 2019-01-08 14:40:09 -08:00
mocks Alter FE data types for cell and view to include parent IDs, use new nested view API 2019-01-10 10:05:58 -08:00
src Polish/onboarding buttons (#11000) 2019-01-11 09:27:11 -08:00
.browserslistrc chore(ui): move ui from chronograf/ui to ui 2018-10-29 14:00:54 -04:00
Makefile Remove yarn in favor of just npm 2018-11-30 17:02:31 -08:00
README.md Remove yarn in favor of just npm 2018-11-30 17:02:31 -08:00
index.d.ts chore(ui): move ui from chronograf/ui to ui 2018-10-29 14:00:54 -04:00
package-lock.json Replace node-sass dep with sass 2019-01-08 09:42:32 -08:00
package.json Replace node-sass dep with sass 2019-01-08 09:42:32 -08:00
testSetup.ts chore(ui): move ui from chronograf/ui to ui 2018-10-29 14:00:54 -04:00
tsconfig.json chore(ui): move ui from chronograf/ui to ui 2018-10-29 14:00:54 -04:00
tslint.json Implement new visual query builder designs 2019-01-07 10:58:18 -08:00
yarn.lock Add ability to create notes on a dashboard 2018-11-29 16:41:40 -08: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.