@theoplayer/web-ui 1.8.0 → 1.8.2
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/CHANGELOG.md +13 -0
- package/README.md +4 -4
- package/dist/THEOplayerUI.d.ts +27 -4
- package/dist/THEOplayerUI.es5.js +2 -2
- package/dist/THEOplayerUI.es5.mjs +2 -2
- package/dist/THEOplayerUI.js +12 -12
- package/dist/THEOplayerUI.js.map +1 -1
- package/dist/THEOplayerUI.mjs +20 -20
- package/dist/THEOplayerUI.mjs.map +1 -1
- package/dist/THEOplayerUI.node.mjs +15 -15
- package/dist/THEOplayerUI.node.mjs.map +1 -1
- package/package.json +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theoplayer/web-ui",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.2",
|
|
4
4
|
"description": "UI component library for the THEOplayer Web SDK",
|
|
5
5
|
"main": "dist/THEOplayerUI.js",
|
|
6
6
|
"module": "dist/THEOplayerUI.mjs",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"build:prod": "rollup -c --environment BUILD:production",
|
|
34
34
|
"watch": "rollup -c --watch",
|
|
35
35
|
"watch:docs": "npm run watch -- --configOutputDir ./docs/_site/dist",
|
|
36
|
-
"start": "
|
|
36
|
+
"start": "serve",
|
|
37
37
|
"format": "prettier --write .",
|
|
38
38
|
"test": "npm run test:format && npm run test:typecheck && npm run test:unit",
|
|
39
39
|
"test:format": "prettier --check .",
|
|
@@ -44,7 +44,8 @@
|
|
|
44
44
|
"version": "npm run version:changelog && npm run version:deps && npm run version:react",
|
|
45
45
|
"version:changelog": "node scripts/bump-changelog.mjs web-ui CHANGELOG.md && git add CHANGELOG.md",
|
|
46
46
|
"version:deps": "cross-env-shell \"npm install $npm_package_name@$npm_package_version --workspace react && git add react/package.json\"",
|
|
47
|
-
"version:react": "cross-env-shell \"npm version $npm_package_version --workspace react --no-git-tag-version && git add react/package.json\""
|
|
47
|
+
"version:react": "cross-env-shell \"npm version $npm_package_version --workspace react --no-git-tag-version && git add react/package.json\"",
|
|
48
|
+
"github:changelog": "node scripts/github-changelog.mjs"
|
|
48
49
|
},
|
|
49
50
|
"keywords": [],
|
|
50
51
|
"author": "THEO Technologies",
|
|
@@ -84,6 +85,7 @@
|
|
|
84
85
|
"rollup-plugin-postcss": "^4.0.2",
|
|
85
86
|
"rollup-plugin-string": "^3.0.0",
|
|
86
87
|
"rollup-plugin-swc3": "^0.8.2",
|
|
88
|
+
"serve": "^14.2.3",
|
|
87
89
|
"theoplayer": "^7.0.0",
|
|
88
90
|
"tslib": "^2.6.2",
|
|
89
91
|
"typedoc": "^0.25.8",
|