cloudinary-video-player 3.7.2 → 3.7.3-edge.1
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/adaptive-streaming.js +2 -2
- package/dist/adaptive-streaming.min.js +2 -2
- package/dist/chapters.js +2 -2
- package/dist/chapters.min.js +2 -2
- package/dist/cld-video-player.css +2 -2
- package/dist/cld-video-player.js +13 -13
- package/dist/cld-video-player.light.js +13 -13
- package/dist/cld-video-player.light.min.js +4 -4
- package/dist/cld-video-player.min.css +2 -2
- package/dist/cld-video-player.min.js +4 -4
- package/dist/colors.js +2 -2
- package/dist/colors.min.js +2 -2
- package/dist/dash.js +2 -2
- package/dist/dash.min.js +2 -2
- package/dist/debug.js +3 -3
- package/dist/debug.min.js +3 -3
- package/dist/ima.js +2 -2
- package/dist/ima.min.js +2 -2
- package/dist/interaction-areas.js +2 -2
- package/dist/interaction-areas.min.js +2 -2
- package/dist/node_modules_lodash_throttle_js.js +2 -2
- package/dist/playlist.js +2 -2
- package/dist/playlist.min.js +2 -2
- package/dist/recommendations-overlay.js +2 -2
- package/dist/recommendations-overlay.min.js +2 -2
- package/dist/schema.json +12 -0
- package/dist/share.js +2 -2
- package/dist/share.min.js +2 -2
- package/dist/shoppable.js +2 -2
- package/dist/shoppable.min.js +2 -2
- package/dist/visual-search.js +2 -2
- package/dist/visual-search.min.js +2 -2
- package/lib/all.js +1 -1
- package/lib/cld-video-player.js +1 -1
- package/lib/debug.js +1 -1
- package/lib/player.js +1 -1
- package/lib/schema.json +12 -0
- package/lib/videoPlayer.js +1 -1
- package/package.json +9 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloudinary-video-player",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.3-edge.1",
|
|
4
4
|
"description": "Cloudinary Video Player",
|
|
5
5
|
"author": "Cloudinary",
|
|
6
6
|
"license": "MIT",
|
|
@@ -41,7 +41,10 @@
|
|
|
41
41
|
"postbuild-all": "bundlewatch",
|
|
42
42
|
"precommit": "eslint src",
|
|
43
43
|
"test": "jest --no-cache --detectOpenHandles",
|
|
44
|
-
"test:unit": "
|
|
44
|
+
"test:unit": "vitest run --config .config/vitest.config.ts test/unit",
|
|
45
|
+
"test:unit:watch": "vitest --config .config/vitest.config.ts test/unit",
|
|
46
|
+
"test:unit:ui": "vitest --ui --config .config/vitest.config.ts test/unit",
|
|
47
|
+
"test:unit:coverage": "vitest run --config .config/vitest.config.ts test/unit --coverage",
|
|
45
48
|
"test:e2e": "npx playwright test --config=test/e2e/playwright.config.ts",
|
|
46
49
|
"commitlint": "commitlint --edit"
|
|
47
50
|
},
|
|
@@ -104,6 +107,8 @@
|
|
|
104
107
|
"@types/node": "22.10.1",
|
|
105
108
|
"@typescript-eslint/eslint-plugin": "^8.48.0",
|
|
106
109
|
"@typescript-eslint/parser": "^8.48.0",
|
|
110
|
+
"@vitest/coverage-v8": "^4.0.16",
|
|
111
|
+
"@vitest/ui": "^4.0.16",
|
|
107
112
|
"babel-jest": "^29.7.0",
|
|
108
113
|
"babel-loader": "^9.2.1",
|
|
109
114
|
"bundlewatch": "^0.4.1",
|
|
@@ -125,6 +130,7 @@
|
|
|
125
130
|
"jest": "^29.7.0",
|
|
126
131
|
"jest-environment-jsdom": "^29.7.0",
|
|
127
132
|
"jest-puppeteer": "^10.1.4",
|
|
133
|
+
"jsdom": "^27.4.0",
|
|
128
134
|
"mini-css-extract-plugin": "^2.9.4",
|
|
129
135
|
"puppeteer": "^22.15.0",
|
|
130
136
|
"puppeteer-request-spy": "^1.4.0",
|
|
@@ -134,6 +140,7 @@
|
|
|
134
140
|
"shx": "^0.3.4",
|
|
135
141
|
"terser-webpack-plugin": "^5.3.14",
|
|
136
142
|
"url-loader": "^4.1.1",
|
|
143
|
+
"vitest": "^4.0.16",
|
|
137
144
|
"webpack": "5.95.0",
|
|
138
145
|
"webpack-bundle-analyzer": "^4.10.2",
|
|
139
146
|
"webpack-cli": "^5.1.4",
|