@webitel/ui-sdk 24.2.60 → 24.2.61

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": "@webitel/ui-sdk",
3
- "version": "24.2.60",
3
+ "version": "24.2.61",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -8,7 +8,6 @@
8
8
  "serve": "vite preview",
9
9
  "test:unit": "vitest",
10
10
  "lint:fix": "eslint --fix --ext .js,.vue src",
11
- "prepare": "husky install",
12
11
  "publish-lib": "npm run test:unit && npm run build && npm publish --access public",
13
12
  "publish-lib:testless": "npm run build && npm publish --access public",
14
13
  "docs:dev": "vitepress dev docs --port 8080",
@@ -50,6 +49,7 @@
50
49
  "jszip": "^3.5.0",
51
50
  "jszip-utils": "^0.1.0",
52
51
  "lodash": "^4.17.21",
52
+ "path-browserify": "^1.0.1",
53
53
  "plyr": "3.6.3",
54
54
  "query-string": "^8.1.0",
55
55
  "sortablejs": "^1.15.0",
@@ -1,7 +1,7 @@
1
1
  import jszipUtils from 'jszip-utils';
2
2
  import { saveAs } from 'file-saver';
3
3
  import JSZip from 'jszip';
4
- import path from 'path';
4
+ import path from 'path-browserify';
5
5
  import generateMediaURL from './scripts/generateMediaURL';
6
6
 
7
7
  /* eslint-disable no-await-in-loop, no-restricted-syntax */