@wistia/vhs 2.69.0 → 2.70.0
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/dist/components/Input/ClickToCopy.d.ts +1 -0
- package/dist/components/Input/ClickToCopy.d.ts.map +1 -1
- package/dist/components/Input/Input.d.ts +4 -0
- package/dist/components/Input/Input.d.ts.map +1 -1
- package/dist/index.cjs +319 -319
- package/dist/index.cjs.map +3 -3
- package/dist/index.mjs +328 -328
- package/dist/index.mjs.map +3 -3
- package/package.json +5 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wistia/vhs",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.70.0",
|
|
4
4
|
"description": "Visual Hype System - Wistia's opinionated component library for building React UIs",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -47,9 +47,10 @@
|
|
|
47
47
|
"publint_": "publint-check",
|
|
48
48
|
"storybook": "cross-env NODE_OPTIONS=--openssl-legacy-provider storybook dev --host localhost --port 6007",
|
|
49
49
|
"storybook:build": "cross-env NODE_OPTIONS=--openssl-legacy-provider storybook build --quiet",
|
|
50
|
-
"test": "
|
|
51
|
-
"test:
|
|
52
|
-
"test:
|
|
50
|
+
"test": "vitest",
|
|
51
|
+
"test:ci": "vitest run --coverage=true",
|
|
52
|
+
"test:coverage": "yarn run test:ci && open ./coverage/index.html",
|
|
53
|
+
"test:debug": "echo 'open chrome://inspect/#devices' && vitest --inspect-brk --no-file-parallelism",
|
|
53
54
|
"ts:generate": "tsx ./scripts/generateTypes.ts",
|
|
54
55
|
"typecheck": "tsc"
|
|
55
56
|
},
|