@cdc/markup-include 4.23.2 → 4.23.4

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/markup-include",
3
- "version": "4.23.2",
3
+ "version": "4.23.4",
4
4
  "description": "React component for displaying HTML content from an outside link",
5
5
  "moduleName": "CdcMarkupInclude",
6
6
  "main": "dist/cdcmarkupinclude",
@@ -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/markup-include build"
13
+ "prepublishOnly": "lerna run --scope @cdc/markup-include 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.4",
28
30
  "axios": "^0.26.1",
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": "dcd395d76f70b2d113f2b4c6fe50a52522655cd1"
40
42
  }
@@ -0,0 +1,6 @@
1
+ // Placeholder test until we add them in.
2
+ describe('Markup Include', () => {
3
+ it('has a test.', async () => {
4
+ return true
5
+ })
6
+ })