@cdc/waffle-chart 4.23.2 → 4.23.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cdc/waffle-chart",
3
- "version": "4.23.2",
3
+ "version": "4.23.3",
4
4
  "description": "React component for displaying a single piece of data in a card module",
5
5
  "moduleName": "CdcWaffleChart",
6
6
  "main": "dist/cdcwafflechart",
@@ -10,7 +10,9 @@
10
10
  "build": "vite build",
11
11
  "preview": "vite preview",
12
12
  "graph": "nx graph",
13
- "prepublishOnly": "lerna run --scope @cdc/waffle-chart build"
13
+ "prepublishOnly": "lerna run --scope @cdc/waffle-chart build",
14
+ "test": "vitest watch --reporter verbose",
15
+ "test:ui": "vitest --ui"
14
16
  },
15
17
  "repository": {
16
18
  "type": "git",
@@ -24,7 +26,7 @@
24
26
  "license": "Apache-2.0",
25
27
  "homepage": "https://github.com/CDCgov/cdc-open-viz#readme",
26
28
  "dependencies": {
27
- "@cdc/core": "^4.23.2",
29
+ "@cdc/core": "^4.23.3",
28
30
  "@visx/shape": "^3.0.0",
29
31
  "chroma": "0.0.1",
30
32
  "chroma-js": "^2.1.0",
@@ -36,5 +38,5 @@
36
38
  "react": "^18.2.0",
37
39
  "react-dom": "^18.2.0"
38
40
  },
39
- "gitHead": "cd4216f47b1c41bfbc1de3b704f70c52cc7293c2"
41
+ "gitHead": "6fa3b11db159d38538f18023fe70b67a29e7d327"
40
42
  }
@@ -0,0 +1,6 @@
1
+ // Placeholder test until we add them in.
2
+ describe('Waffle Chart', () => {
3
+ it('has a test.', async () => {
4
+ return true
5
+ })
6
+ })