9edf9bd6ee
* Add x and y column picker to line graph * Use column selector in heatmap options * Add column selector to histogram * Add column selector to scatter plot * Fix tests * Add xColumn and yColumn to data structure in line graph tests * Move scatter container defaults to visSwitcher * Add fillcolumn validity checking to histogram * regularize XYcontainer and render it and lineplussingle stat in visSwitcher * Initialize all views with null columns * Place Line and Scatter Options x-y column selector behind cloud feature flag * Rename getGroupableColumnSelection * Add defaults to x/y column selections in line graphs * Add defaults to x/y column selections in scatter |
||
---|---|---|
.. | ||
assets/images | ||
cypress | ||
mocks | ||
scripts | ||
src | ||
.browserslistrc | ||
.eslintrc.js | ||
.npmrc | ||
.prettierrc.json | ||
Makefile | ||
README.md | ||
cypress.json | ||
index.d.ts | ||
jestSetup.ts | ||
package-lock.json | ||
package.json | ||
testSetup.ts | ||
tsconfig.json |
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
.